Posts

Showing posts with the label iteration

CHAPTER 5. CONDITIONALS, LOOPS, AND SOME OTHER STATEMENTS

print  python 2 -statement, python 3 -function Arguments of print do not form Tuples >>> 1,2,3 (1, 2, 3) >>> print 1,2,3 1 2 3 >>> print (1,2,3) (1, 2, 3) ________________________________ >>> name = 'Gumby' >>> salutation = 'Mr.' >>> greeting = 'Hello,' >>> print greeting, salutation, name Hello, Mr. Gumby ________________________________ Issues about comma and space before >>> name = 'Gumby' >>> name = 'Gumby' >>> salutation = 'Mr.' >>> greeting = 'Hello' >>> print greeting,',',salutation,name Hello , Mr. Gumby >>> print greeting+',',salutation,name Hello, Mr. Gumby ------------------------------------------ print 'Hello,', print 'world!' print out Hello, world! ________________________________ >>> import math as foobar >>> foo...