welcome to the python
hello there are some exercises that might be helpful for you to learn python in easy way. print('mohsin') or print("mohsin") to print mohsin on screen . here you can write anyting in the cotations to display anything on the screen. you can also use print to call any previous defined or initialized value like price = 10 print (price) this is the code that is going to display value of price on the screen. it means when you use print without quoations like print(price) it will display the value of the variable that you entered in the small brackets. so it means that print can either display value and it can call the variables also . so it can involve 2 functions in its brackets examle if we write this code print(' * ' *10) then we will see ********** ...