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