#walrusoperator search results

*heavy breathing* My first major contribution to CPython is landing soon. #walrusoperator

emilyemorehouse's tweet image. *heavy breathing* 

My first major contribution to CPython is landing soon.  #walrusoperator

I think the option one of #walrusoperator looks cleaner. Playing with #python3.8

arekusandr_'s tweet image. I think the option one of #walrusoperator  looks cleaner. Playing with #python3.8

My #PyCon2019 tutorial is done! Whew. Now... come get some #WalrusOperator stickers

emilyemorehouse's tweet image. My #PyCon2019 tutorial is done! Whew. Now... come get some #WalrusOperator stickers

Can you combine the addition assignment ( += ) operator with the walrus operator ( := ) in Python? stackoverflow.com/questions/6850… #python38 #python #walrusoperator

overflow_meme's tweet image. Can you combine the addition assignment ( += ) operator with the walrus operator ( := ) in Python? stackoverflow.com/questions/6850… #python38 #python #walrusoperator

@emilyemorehouse I just pyenv'd the latest 3.8-dev and tried out the assignment operator. So cool. Also I love that there is now a phrase to describe the operator. #walrusoperator #python

erinxocon's tweet image. @emilyemorehouse I just pyenv'd the latest 3.8-dev and tried out the assignment operator.  So cool.  Also I love that there is now a phrase to describe the operator.

#walrusoperator #python

Day 13 of #100DaysOfCode #WalrusOperator assigns values to variables as a part of a larger expression. minimize doing calculations that are similar.

jhaycee0305's tweet image. Day 13 of #100DaysOfCode 

#WalrusOperator assigns values to variables as a part of a larger expression.
minimize doing calculations that are similar.

Oh my, I am actually release-manageering for the first time. Doing release-managery things. #python #threepointeight #walrusoperator


Just learned about the walrus operator in Python on Day 86 of my #100DaysOfCode challenge! 🚀🐍 Excited to level up my programming skills! #PythonProgramming #WalrusOperator #Python #CodeWithHarry Thanks @codewithharry bhaiya.

ThakurDiwakar14's tweet image. Just learned about the walrus operator in Python on Day 86 of my #100DaysOfCode challenge! 🚀🐍 Excited to level up my programming skills! #PythonProgramming #WalrusOperator #Python #CodeWithHarry  Thanks @codewithharry bhaiya.

One line Fibonacci becomes even easier with the #WalrusOperator in #Python from @matrixise @PythonIreland #PyConIE 🇮🇪🐍

DomWeldon's tweet image. One line Fibonacci becomes even easier with the #WalrusOperator in #Python from @matrixise @PythonIreland #PyConIE 🇮🇪🐍

Introducing the Walrus (:=) operator in Python3.8. This operator allows for assignment and evaluation in one function call! #python #pyskills #walrusOperator

PyskillsC's tweet image. Introducing the Walrus (:=) operator in Python3.8. This operator allows for assignment and evaluation in one function call!

#python #pyskills #walrusOperator

PEP 572 (assignment expressions) is officially merged! 🎉 I still can’t believe that I implemented a new syntax in one of my favorite languages. 🙌🏻 #walrusoperator #python


I think the code re: operator precedence in the questions on the great talk by @matrixise is as below! @PythonIreland #PyConIE 🐍🇮🇪🐗 #WalrusOperator

DomWeldon's tweet image. I think the code re: operator precedence in the questions on the great talk by @matrixise is as below! @PythonIreland #PyConIE 🐍🇮🇪🐗 #WalrusOperator

One-liners vs. endless lines: why settle? The walrus operator lets you assign and check in one go—simple, sharp, and readable (a wink to walruses). Is less code always better? Read more: iam.slys.dev/p/python-inter… #Python #WalrusOperator #CodingTips

iam.slys.dev

Walrus operator

Python Intermediate


One-liners vs. endless lines: why settle? The walrus operator lets you assign and check in one go—simple, sharp, and readable (a wink to walruses). Is less code always better? Read more: iam.slys.dev/p/python-inter… #Python #WalrusOperator #CodingTips

iam.slys.dev

Walrus operator

Python Intermediate


Python trick: Use := (walrus operator) to assign values inside expressions! Example: if (n := len(text)) > 10: Now n holds the length of text for later use. #PythonTips #WalrusOperator


#Python Tip: Use the walrus operator := to assign and evaluate expressions in one line. ```python result := (x := 5) * 2 # x is assigned 5 and result is 10 ``` #Python #WalrusOperator #CodeOptimization


This blog post show cases some of the situations in which I will use the walrus operator. Enjoy the post. Comment too. sisengai.com/blog/2024-June… #WalrusOperator #Python #AssignmentExpression #PEP572


-|- Python Tip -|- Did you know the Walrus Operator can simplify your code? No more temporary variables needed! Example: while (line := file.readline()) != "": # process line #Python #WalrusOperator #CodeSimplification


Introducing the Walrus Operator := Assign and return a value in one line of code! Example: if (n := len(my_list)) > 5: print(f"List has {n} elements") #Python #WalrusOperator #Coding


Drop them below and let’s continue crafting code that’s not just functional, but beautifully efficient! #PythonTips #WalrusOperator #CodingEfficiency #Chakravuyha #CodeOptimization


The walrus operator allows you to assign values within an expression. In this case, it reads input until the user types "quit" and prints each line. It's a handy way to simplify code! Want to learn more? Don't forget to follow! 📚 #PythonTricks #CodingTips #WalrusOperator 🐍


Just learned about the walrus operator in Python on Day 86 of my #100DaysOfCode challenge! 🚀🐍 Excited to level up my programming skills! #PythonProgramming #WalrusOperator #Python #CodeWithHarry Thanks @codewithharry bhaiya.

ThakurDiwakar14's tweet image. Just learned about the walrus operator in Python on Day 86 of my #100DaysOfCode challenge! 🚀🐍 Excited to level up my programming skills! #PythonProgramming #WalrusOperator #Python #CodeWithHarry  Thanks @codewithharry bhaiya.

Day 13 of #100DaysOfCode #WalrusOperator assigns values to variables as a part of a larger expression. minimize doing calculations that are similar.

jhaycee0305's tweet image. Day 13 of #100DaysOfCode 

#WalrusOperator assigns values to variables as a part of a larger expression.
minimize doing calculations that are similar.

Python bioinformaticians: I am considering using the 'Assignment Expressions' ('walrus') operator (:=), new as of v. 3.8. Is this likely to shut out many users? If so, would you consider its utility an acceptable tradeoff? #python #bioinformatics #WalrusOperator @Biopython


Can you combine the addition assignment ( += ) operator with the walrus operator ( := ) in Python? stackoverflow.com/questions/6850… #python38 #python #walrusoperator

overflow_meme's tweet image. Can you combine the addition assignment ( += ) operator with the walrus operator ( := ) in Python? stackoverflow.com/questions/6850… #python38 #python #walrusoperator

Introducing the Walrus (:=) operator in Python3.8. This operator allows for assignment and evaluation in one function call! #python #pyskills #walrusOperator

PyskillsC's tweet image. Introducing the Walrus (:=) operator in Python3.8. This operator allows for assignment and evaluation in one function call!

#python #pyskills #walrusOperator

Tonight I used the #walrus operator in a project for the first time. #python #walrusoperator #iamthewalrus


And this is how #Python version 3.8's #WalrusOperator does works: >>> (a := "walrus") 'walrus' >>> a 'walrus' Why? 🤯 Unparenthesized "assignment expression" (use of walrus operator), is restricted at the top level. Learn more here: buff.ly/2AW3YSH


#Python version 3.8 introduced the #WalrusOperator ":=". Here is how it does *not* work: >>> a = "walrus" >>> a 'walrus' >>> a := "walrus" File "<stdin>", line 1 a := "walrus" ^ SyntaxError: invalid syntax Can you explain why? 🤯


I think the option one of #walrusoperator looks cleaner. Playing with #python3.8

arekusandr_'s tweet image. I think the option one of #walrusoperator  looks cleaner. Playing with #python3.8

*heavy breathing* My first major contribution to CPython is landing soon. #walrusoperator

emilyemorehouse's tweet image. *heavy breathing* 

My first major contribution to CPython is landing soon.  #walrusoperator

My #PyCon2019 tutorial is done! Whew. Now... come get some #WalrusOperator stickers

emilyemorehouse's tweet image. My #PyCon2019 tutorial is done! Whew. Now... come get some #WalrusOperator stickers

@emilyemorehouse I just pyenv'd the latest 3.8-dev and tried out the assignment operator. So cool. Also I love that there is now a phrase to describe the operator. #walrusoperator #python

erinxocon's tweet image. @emilyemorehouse I just pyenv&apos;d the latest 3.8-dev and tried out the assignment operator.  So cool.  Also I love that there is now a phrase to describe the operator.

#walrusoperator #python

Day 13 of #100DaysOfCode #WalrusOperator assigns values to variables as a part of a larger expression. minimize doing calculations that are similar.

jhaycee0305's tweet image. Day 13 of #100DaysOfCode 

#WalrusOperator assigns values to variables as a part of a larger expression.
minimize doing calculations that are similar.

Can you combine the addition assignment ( += ) operator with the walrus operator ( := ) in Python? stackoverflow.com/questions/6850… #python38 #python #walrusoperator

overflow_meme's tweet image. Can you combine the addition assignment ( += ) operator with the walrus operator ( := ) in Python? stackoverflow.com/questions/6850… #python38 #python #walrusoperator

Introducing the Walrus (:=) operator in Python3.8. This operator allows for assignment and evaluation in one function call! #python #pyskills #walrusOperator

PyskillsC's tweet image. Introducing the Walrus (:=) operator in Python3.8. This operator allows for assignment and evaluation in one function call!

#python #pyskills #walrusOperator

Just learned about the walrus operator in Python on Day 86 of my #100DaysOfCode challenge! 🚀🐍 Excited to level up my programming skills! #PythonProgramming #WalrusOperator #Python #CodeWithHarry Thanks @codewithharry bhaiya.

ThakurDiwakar14's tweet image. Just learned about the walrus operator in Python on Day 86 of my #100DaysOfCode challenge! 🚀🐍 Excited to level up my programming skills! #PythonProgramming #WalrusOperator #Python #CodeWithHarry  Thanks @codewithharry bhaiya.

Oh my, I am actually release-manageering for the first time. Doing release-managery things. #python #threepointeight #walrusoperator


One line Fibonacci becomes even easier with the #WalrusOperator in #Python from @matrixise @PythonIreland #PyConIE 🇮🇪🐍

DomWeldon's tweet image. One line Fibonacci becomes even easier with the #WalrusOperator in #Python from @matrixise @PythonIreland #PyConIE 🇮🇪🐍

THE WALRUS OPERATOR IN PYTHON 3.8 Date: 29/01/2020 Introduction Walrus Operator is another name for Assignment Expressions. I will explain in detail in this article. #python #WalrusOperator blog.pheonixsolutions.com/the-walrus-ope…

pheonixsolution's tweet image. THE WALRUS OPERATOR IN PYTHON 3.8

Date: 29/01/2020

Introduction

Walrus Operator is another name for Assignment Expressions. I will explain in detail in this article.  #python #WalrusOperator blog.pheonixsolutions.com/the-walrus-ope…

I think the code re: operator precedence in the questions on the great talk by @matrixise is as below! @PythonIreland #PyConIE 🐍🇮🇪🐗 #WalrusOperator

DomWeldon's tweet image. I think the code re: operator precedence in the questions on the great talk by @matrixise is as below! @PythonIreland #PyConIE 🐍🇮🇪🐗 #WalrusOperator

1/2 #PyconColombia2020 closing Keynotes: @emilyemorehouse talks about her road to becoming a #Python core developer and teaches us to stay focus on our own work by not comparing ourselves to others. BTW, she implemented the #walrusoperator into #CPython.

serpulga's tweet image. 1/2 #PyconColombia2020 closing Keynotes: @emilyemorehouse talks about her road to becoming a #Python core developer and teaches us to stay focus on our own work by not comparing ourselves to others. BTW, she implemented the #walrusoperator into #CPython.
serpulga's tweet image. 1/2 #PyconColombia2020 closing Keynotes: @emilyemorehouse talks about her road to becoming a #Python core developer and teaches us to stay focus on our own work by not comparing ourselves to others. BTW, she implemented the #walrusoperator into #CPython.

Loading...

Something went wrong.


Something went wrong.


United States Trends