Skip to content

Commit 75ec7ea

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents e9c8ef7 + 7785933 commit 75ec7ea

File tree

3 files changed

+30
-9
lines changed

3 files changed

+30
-9
lines changed

src/m1e_comments_strings_print.py

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
1+
########################################################################
2+
#
3+
# TODO: 1.
4+
# (Yes, that means for YOU to DO things per these instructions:)
5+
#
6+
# Run this module by right clicking anywhere in this window, then select
7+
# Run 'name of file'
8+
# After running, find the Console tab (below) and confirm that everything
9+
# did indeed get printed (displayed).
10+
#
11+
########################################################################
12+
113
print('Hello, World')
214
print('hi there')
3-
print('one', 'two', 'through my shoe')
15+
print('one', 'two', 'buckle my shoe')
416
print(3 + 9)
517
print('3 + 9', 'versus', 3 + 9)

src/m2_hello_world.py

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
# finished all the exercises in a module -- there will be no blue bars
4545
# left on the scrollbar-like thing to the right.
4646
#
47-
# You have now completed TO DO #2, so change its TO DO on line 26 to DONE
47+
# You have now completed TO DO #2, so change its TO DO on line 29 to DONE
4848
# (and proceed similarly for all forthcoming TODOs in this course).
4949
#
5050
########################################################################
@@ -77,19 +77,18 @@
7777
########################################################################
7878
#
7979
# TODO: 5.
80-
# Look at the list of files in this project in the
81-
# PyDev Package Explorer
82-
# to the left.
80+
# Look at the list of files in this project to the left.
8381
# 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.
82+
# font color (if the file is highlighted select a different file so yu can
83+
# see the blue font color). That means that you have made changes to
84+
# this file which have not yet been committed.
8685
#
8786
# COMMIT your work by selecting VCS from the menu bar, then select Commit Changes
8887
# Make sure only the files you want to commit are checked and optionally
8988
# add a quick Commit message to describe your work. Then hover over the
9089
# 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).
90+
# your computer. "and Push" saves a copy of your work up into your Github
91+
# repository (saving to the cloud is a better way to permanently safe work).
9392
#
9493
# Oh, one more thing:
9594
# Do you have any blue bars left on the on the scrollbar-like thing

src/m3_turtles.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
# Allow this file to use the rosegraphics.py file by marking the src
3434
# directory as a "Sources Root". Do that by right clicking on the src folder,
3535
# then selector Mark Directory As --> Sources Root
36+
# Watch the red underlines on the line of code above disappear as you do that step.
3637
# You will do that once for every project that uses rosegraphics so get used to it. :)
3738
#
3839
# Run this module by Right clicking in this window and select Run 'filename'
@@ -73,6 +74,7 @@
7374
akil.left(90)
7475
akil.forward(50)
7576

77+
7678
########################################################################
7779
#
7880
# TODO: 3.
@@ -116,6 +118,14 @@
116118
#
117119
# Then COMMIT and Push your work using the VCS menu option.
118120
#
121+
# Reminder of those steps...
122+
# COMMIT your work by selecting VCS from the menu bar, then select Commit Changes
123+
# Make sure only the files you want to commit are checked and optionally
124+
# add a quick Commit message to describe your work. Then hover over the
125+
# Commit button and select Commit and Push. Commit saves the work to
126+
# your computer. "and Push" saves a copy of your work up into your Github
127+
# repository (saving to the cloud is a better way to permanently safe work).
128+
#
119129
# You can COMMIT as often as you like. DO FREQUENT COMMITS.
120130
#
121131
########################################################################

0 commit comments

Comments
 (0)