diff options
| -rw-r--r-- | python3.html.markdown | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/python3.html.markdown b/python3.html.markdown index 2398e7ac..6d657395 100644 --- a/python3.html.markdown +++ b/python3.html.markdown @@ -174,6 +174,10 @@ some_var  # => 5  # See Control Flow to learn more about exception handling.  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  li = []  # You can start with a prefilled list  | 
