Learn practical skills, build real-world projects, and advance your career

Sequential Programs

# variables used for storing and processing data
# string, int, float, boolean
name="Aditya"
age=22
height=6.1
isIndian=True
print(type(name))
print(type(age))
print(type(height))
print(type(isIndian))
<class 'str'> <class 'int'> <class 'float'> <class 'bool'>
name
'Aditya'