variable = "Welcome to Python Tutorials" print(variable) help(print) variable = "Welcome to Python Tutorials" variable2 = ",This is a good place to learn programming" print(variable, variable2) print(1, 2, 3, 4, 5, sep="--->") print(1, 2, 3, 4, 5, end=" This is the end") variable = "Python" variable2 = "Programming" print("I love {0} and {1}".format(variable,variable2)) print(format(1234567, ",d")) number = 12.3456 print("The value of x is %1.2f" %number) print("The value of x is %1.5f" %number) number = input("Enter the number of your choice: ") print("The number that you have entered is: %s" %number) import math print(math.pi) from math import pi print(pi)