mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 17:41:41 +00:00
Adding documentation on ternary operator
This commit is contained in:
parent
ba5f3ebc11
commit
d2d89cfa97
@ -174,6 +174,10 @@ some_var # => 5
|
|||||||
# See Control Flow to learn more about exception handling.
|
# See Control Flow to learn more about exception handling.
|
||||||
some_unknown_var # Raises a NameError
|
some_unknown_var # Raises a NameError
|
||||||
|
|
||||||
|
# if can be used as an expression
|
||||||
|
# Equivalent of C's '?:' ternary operator
|
||||||
|
"yahoo!" if 3 > 2 else 2 # => "yahoo!"
|
||||||
|
|
||||||
# Lists store sequences
|
# Lists store sequences
|
||||||
li = []
|
li = []
|
||||||
# You can start with a prefilled list
|
# You can start with a prefilled list
|
||||||
|
Loading…
Reference in New Issue
Block a user