Printing the values in different ways with use of variables in Python


#This is the comment line in the Python.
#Program to explain basic printing and using of variables.
#Type the following code (as it is) in the new Windows opened by IDE.
#Different ways to print the statements and use of variables.



print("Hello Friends","Welcome to Python")

language='Python is a High Level Programming Language'
author="Guido Van Rossum in 1990s developed Python Programming Language."
name="Python was named after a British TV Show namely 'Monty Python's Flying Circus"
save='Save Python file with .py extension'

print(language)
print(author)
print(name)
print(save)
#print("These Values are not printed")



Output>>> Hello Friends Welcome to PythonPython is a High Level Programming LanguageGuido Van Rossum in 1990s developed Python Programming Language.Python was named after a British TV Show namely 'Monty Python's Flying CircusSave Python file with .py extension>>> 


No comments

Post your comments

Powered by Blogger.