*TL:DR* Initial Installation of python in system Lets start with simple python program print("Hello World") #---> output ---> Hello world """ Hello world program In python anything inside print() will display on the screen Also the text print to on the screen should be inside "", '' between this """ Python Commands #print a number print(25) # Hash is used to comment out which will ignored on execution # Hash is a single line command """ Multi line command Defined like this can hold multiple lines """ ''' These commands can comment out error making code lines and also declare or define what this particular line of code does explanation For debugging For Future references, as comments are in readable format For collaboration with Peers ''' Python Variables and Literals #variable is the container which holds or store data number = 10 #Number is the var...