We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5627684 commit 16edb2dCopy full SHA for 16edb2d
2 files changed
README
@@ -7,4 +7,5 @@ I am listing the order in which you may want to read these examples. The order b
7
- python_strings.py
8
- python_numbers.py
9
- python_booleans.py
10
- - python_conversions.py
+ - python_conversions.py
11
+ - using_modules.py
basic_examples/using_modules.py
@@ -4,8 +4,9 @@
4
import my_module
5
6
#printing all the command line arguments provided to this program
-print 'sys.path = ', sys.argv
+print "cmd args to this program are '", sys.argv, "'"
print 'The PYTHONPATH is ', sys.path
+#Let's call a function from my_module
12
my_module.sayHello()
0 commit comments