Elementary Input/Output in Python

Elementary Input/Output in Python


Let us first try to write a simple Python program which greets to the user with the following messages when executed.

print "Hello Welcome to Interactive Python Learning"
print("Hello Welcome to Interactive Python Learning")
print("Hello Welcome to Interactive Python Learning")
print('Hello Welcome to Interactive Python Learning')
print('''Hello Welcome to Interactive Python Learning''')
print("""Hello Welcome to Interactive Python Learning""")
print('Hello Welcome to Interactive Python Learning")
print('''Hello Welcome to Interactive Python Learning')
print("""Hello Welcome to Interactive Python Learning")
print("Hello Welcome to Interactive Python Learning')
print('''Hello Welcome to Interactive Python Learning""")
print("""Hello Welcome to Interactive Python Learning''')
print('"'Hello Welcome to Interactive Python Learning""")
print("'"Hello Welcome to Interactive Python Learning''')
print(""Hello Welcome to Interactive Python Learning"")
print(''Hello Welcome to Interactive Python Learning'')
print("Hello Welcome to Interactive Python Learning""")
print('''"Oh no", she exclaimed, "Ben's bike is broken!"''')
message = """This message will
span several
lines."""
print(message)

print("""This message will span
several lines
of the text.""")
message = '''This message will
span several
lines.'''
print(message)
print message

print('''This message will span
several lines
of the text.'')
message = "This message will
span several
lines."
print(message)

print("This message will span
several lines
of the text.")

message = 'This message will
span several
lines.'print(message)

print('This message will span
several lines
of the text.')
X="Ram"
print "X"
print("X")
print 'X'
print('X')
print """X"""
print("""X""")
print '''X'''
print('''X''')
print `X`
print(`X`)
Y="X"
print Y
Y='X'
print Y
Y="""X"""
print Y
Y='''X'''
print Y
Y=`X`
print Y



No comments

Algorithms and Programs

  Algorithms and Programs Both the algorithms and programs are used to solve problems, but they are not the same things in terms of their fu...