Skip to content

Commit e490acc

Browse files
committed
Initial import
1 parent cb8df22 commit e490acc

File tree

3 files changed

+28
-29
lines changed

3 files changed

+28
-29
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# IntroductionToPython
2-
Hello World and Turtle Graphics
2+
Hello World and Turtle Graphics used on the first day of class.

src/m1e_comments_strings_print.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# Authors: David Mutchler, Amanda Stouder, Mark Hays, Valerie Galluzzi,
2-
# Dave Fisher and many others before them.
3-
41
print('Hello, World')
52
print('hi there')
63
print('one', 'two', 'through my shoe')

src/m2_hello_world.py

Lines changed: 27 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,9 @@
1616
# TODO: 1.
1717
# (Yes, that means for YOU to DO things per these instructions:)
1818
#
19-
# Run this module by using the green arrow on the toolbar up top.
20-
# After running, find the Console tab (to the right) and confirm that
19+
# Run this module by right clicking anywhere in this window and select
20+
# Run 'name of file'
21+
# After running, find the Console tab (below) and confirm that
2122
# Hello, World
2223
# did indeed get printed (displayed) on the Console.
2324
#
@@ -27,12 +28,12 @@
2728
#
2829
# TODO: 2.
2930
# Notice the small horizontal BLUE bars on the scrollbar-like thing
30-
# on the right. Each blue bar indicates a TODO in this module.
31+
# on the right. Each blue bar indicates a TO DO in this module.
3132
#
32-
# a. You can use the blue bars to go from one TODO to the next
33+
# a. You can use the blue bars to go from one TO DO to the next
3334
# by clicking on the blue bars. ** Try that now. **
3435
#
35-
# b. When you have completed a TODO, you should change the word
36+
# b. When you have completed a TO DO, you should change the word
3637
# TODO
3738
# to
3839
# DONE.
@@ -43,32 +44,33 @@
4344
# finished all the exercises in a module -- there will be no blue bars
4445
# left on the scrollbar-like thing to the right.
4546
#
46-
# You have now completed TODO #2, so change its TODO on line 26 to DONE
47+
# You have now completed TO DO #2, so change its TO DO on line 26 to DONE
4748
# (and proceed similarly for all forthcoming TODOs in this course).
4849
#
4950
########################################################################
5051

5152
########################################################################
5253
#
5354
# TODO: 3.
54-
# Add another print statement below the current Line 1.
55+
# Add another print statement below.
5556
# It should print any string that you want (but keep it G-rated!)
56-
# Test your code by re-running this module and looking at
57-
# the Console to be sure that your string printed as expected.
57+
# Test your code by re-running this module using either the right click
58+
# method again or by using the play button in the upper right.
59+
# Look at the Console to be sure that your string printed as expected.
5860
#
5961
########################################################################
6062

6163
########################################################################
6264
#
6365
# TODO: 4.
64-
# Add yet another print statement, just below the previous one.
65-
# This one should print the product of 3,607 and 34,227.
66+
# Add yet another print statement.
67+
# This one should print the *product* of 3,607 and 34,227.
6668
# Let the computer do the arithmetic for you (no calculators!).
67-
# You do NOT have to use strings for this, so no quote marks!
69+
# You do NOT have to use strings for this, so no quotation marks!
6870
#
6971
# TEST your code by re-running this module, then asking someone
70-
# whom you trust: What number did your print display?
71-
# (HINT: It is an INTERESTING number.) Get help if yours is wrong.
72+
# whom you trust: What number did your print display for TO DO 4?
73+
# (HINT: It is an INTERESTING number.) Get help if your value is wrong.
7274
#
7375
########################################################################
7476

@@ -78,22 +80,22 @@
7880
# Look at the list of files in this project in the
7981
# PyDev Package Explorer
8082
# to the left.
81-
# Note that this file (m2_hello_world.py) has a little black dot
82-
# to the left of the filename. That means that you have
83-
# made changes to this file that you have not yet turned in.
83+
# Note that this file (m2_hello_world.py) is now displayed in a blue
84+
# font color. That means that you have made changes to this file which
85+
# have not yet been committed.
8486
#
85-
# COMMIT your work (which turns it in) by selecting (clicking on)
86-
# the file with the black dot (or the entire project if you prefer)
87-
# and then do SVN ~ Commit... from the SVN menu at the top.
88-
#
89-
# Then check that the black symbol beside the file name in the
90-
# PyDev Package Explorer on the left has gone away.
91-
# That's how you can tell that you have turned in your work.
87+
# COMMIT your work by selecting VCS from the menu bar, then select Commit Changes
88+
# Make sure only the files you want to commit are checked and optionally
89+
# add a quick Commit message to describe your work. Then hover over the
90+
# Commit button and select Commit and Push. Commit saves the work to
91+
# your computer. Push saves a copy of your work up into your Github
92+
# repository (saving to the cloud is saver).
9293
#
9394
# Oh, one more thing:
9495
# Do you have any blue bars left on the on the scrollbar-like thing
9596
# to the right? If so, click on each blue bar and change
96-
# its TODO to DONE. Then run the file to save it, and COMMIT again.
97+
# its TO DO to DONE. Then run the file (to make sure you didn't break
98+
# anything) then Commit and Sync again.
9799
#
98100
# You can COMMIT as often as you like. DO FREQUENT COMMITS.
99101
#

0 commit comments

Comments
 (0)