Month January 2024

Variables and Data Types

Variable Assignment # define a variable name “a” and assign value 5 to it a = 5 print(a) Variable naming rules Identifiers in Python Rules of Writing Identifiers Keywords cannot be used as identifiers. `Keywords` are the reserved words in…