Skip to content

Commit 16edb2d

Browse files
committed
made a few changes to the file using_modules.py
1 parent 5627684 commit 16edb2d

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

README

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@ I am listing the order in which you may want to read these examples. The order b
77
- python_strings.py
88
- python_numbers.py
99
- python_booleans.py
10-
- python_conversions.py
10+
- python_conversions.py
11+
- using_modules.py

basic_examples/using_modules.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@
44
import my_module
55

66
#printing all the command line arguments provided to this program
7-
print 'sys.path = ', sys.argv
7+
print "cmd args to this program are '", sys.argv, "'"
88

99
print 'The PYTHONPATH is ', sys.path
1010

11+
#Let's call a function from my_module
1112
my_module.sayHello()

0 commit comments

Comments
 (0)