Back to Cheatsheets
Python Basics
Core Python syntax and types.
Data Types
strString
Immutable text sequence.
Copied!
listList
Mutable sequence.
Copied!
dictDictionary
Key-value mapping.
Copied!
tupleTuple
Immutable sequence.
Copied!
Control Flow
if/elif/elseConditional
Copied!
for x in iterFor Loop
Copied!
while condWhile Loop
Copied!
try/exceptException
Copied!