- BASICS
-
Print
- Statements
- Operators
- Functions
- Incremental
- Errors
- FUNCTIONS
- Recursion
- Objects
- Lambda
- STRINGS
- Immutable
- Raw Strings
- Validation
- Config
- Security
- CLASS
- Definition
- Attributes
- Functional
- Methods
- COLLECTIONS
- Lists
- Dictionaries
- Efficiency
- Tree
- Iterator
- Tuples
- References
- STORAGE
- Files
- Databases
- Pipes
- With Open
- Shelve
- Zip
- Csv
- Json
by Prompt
""" Open command prompt
"""
$ python --version # Python 3.9.7
$ python
>>> print('Hello World') # Hello World
Mistakes
""" Making mistakes on purpose, helps you remember
"""
print 'Hello World'
"""
SyntaxError: Missing parentheses in call to 'print'.
"""
Last update: 203 days ago