Category: Learn Python the Hard Way Exercise 1

LPTHW - Exercise 1: A Good First Program

LPTHW - Exercise 1 Pretty simple introduction this, just a few print statements. Example code will be below the answers to the student questions... # print("Hello again!") # print("I Like typing this.") # print("This is fun.") # print('Yay! Printing.') # print("I'd much rather you 'not'.") # print('I "said" do not touch this.') print "This is another line." Learn Python The Hard Way Study Drills 1. Make your script print another line.

Read more...