diff --git a/your-first-python-program.html b/your-first-python-program.html index 6418059..3a291bf 100755 --- a/your-first-python-program.html +++ b/your-first-python-program.html @@ -56,12 +56,12 @@ if __name__ == '__main__': print(approximate_size(1000000000000))
Now let’s run this program on the command line. On Windows, it will look something like this:
-c:\home\diveintopython3> c:\python30\python.exe humansize.py +c:\home\diveintopython3\examples> c:\python31\python.exe humansize.py 1.0 TB 931.3 GiB
On Mac OS X or Linux, it would look something like this:
-you@localhost:~$ python3 humansize.py +you@localhost:~/diveintopython3/examples$ python3 humansize.py 1.0 TB 931.3 GiB