From 7bbebbf4b5e807522ab3e533657d1c3e3ecb623b Mon Sep 17 00:00:00 2001 From: Mark Pilgrim Date: Sat, 18 Jul 2009 00:39:49 -0400 Subject: [PATCH] be more clear about current working directory --- advanced-iterators.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/advanced-iterators.html b/advanced-iterators.html index d613676..6f6c313 100755 --- a/advanced-iterators.html +++ b/advanced-iterators.html @@ -76,13 +76,13 @@ if __name__ == '__main__':

You can run the program from the command line. On Linux, it would look like this. (These may take some time, depending on the speed of your computer, and there is no progress bar. Just be patient!)

-you@localhost:~$ python3 alphametics.py "HAWAII + IDAHO + IOWA + OHIO == STATES"
+you@localhost:~/diveintopython3/examples$ python3 alphametics.py "HAWAII + IDAHO + IOWA + OHIO == STATES"
 HAWAII + IDAHO + IOWA + OHIO = STATES
 510199 + 98153 + 9301 + 3593 == 621246
-you@localhost:~$ python3 alphametics.py "I + LOVE + YOU == DORA"
+you@localhost:~/diveintopython3/examples$ python3 alphametics.py "I + LOVE + YOU == DORA"
 I + LOVE + YOU == DORA
 1 + 2784 + 975 == 3760
-you@localhost:~$ python3 alphametics.py "SEND + MORE == MONEY"
+you@localhost:~/diveintopython3/examples$ python3 alphametics.py "SEND + MORE == MONEY"
 SEND + MORE == MONEY
 9567 + 1085 == 10652