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

JavaFX Scene Builder

  This is an article about the JavaFX Scene Builder. You will get a short introduction about the installation and usage of the software. The...