COS 125 FALL 2009 HW #1 DUE THURSDAY 09/03/09 Z stands for the Zelle Book D stands for the Downey Book Problem 1 Fill out the registration for this course at www.cs.umaine.edu/~markov and print out the registration page Problem 2 Register your cell phone number and e-mail with campus emergency services www.umaine.edu/umainetxt Provide a printout of any of the e-mail that you received from the service Alternatively, you can opt out of this by writing a short explanation of why you choose not to participate Problem 3 Point your browser to http://python.org/download/ Download and install Python 2.6.2 on your computer and figure out how to run IDLE Produce output that has your name and looks like the following Python 2.6.2 (r262:71605, Apr 14 2009, 22:40:02) [MSC v.1500 32 bit (Intel)] on win32 Type "copyright", "credits" or "license()" for more information. **************************************************************** Personal firewall software may warn about the connection IDLE makes to its subprocess using this computer's internal loopback interface. This connection is not visible on any external interface and no data is sent to or received from the Internet. **************************************************************** IDLE 2.6.2 >>> print "Hello World!" Hello World! >>> print "George Markowsky says Hello to the World!" George Markowsky says Hello to the World! >>>