Python Demo
Python Code
Output
#A demo of print function str_1 = ("Displaying string variable.") str_2 = ("With multiple values.") str_3 = ("Each value is seperated by space.") print (str_1,str_2,str_3)