Python Refresher
Python is a high-level, dynamically typed, multiparadigm programming language.
#Check python version
!python --version
Basic Data Types
Numbers
#Integers
p = 5
print(p, type(p))
#output - 5 <class 'int'>
print(p + 1) # Addition #output - 6...
itzsourabh.hashnode.dev6 min read