python 2.7 print code example
Example 1: print in python 2
# Print is a keyword in python2, so it works more like this
print ""
# Also like this
print 1+1
Example 2: phyton "2.7" print
print "Text to print"
x = 5
print "Value: ", x
# Print is a keyword in python2, so it works more like this
print ""
# Also like this
print 1+1
print "Text to print"
x = 5
print "Value: ", x