Python
Data Types
x = 5
# Check the typing and get the type
print(type(x), isInstance(x, str))String
age = 36
txt = f"My name is John, I am {age}"
print(txt)Logical
Boolean
List
Tuple
Set
Dictionaries
Function
Lambda
Class
Last updated