Moved 8-16 to correct folder
This commit is contained in:
parent
e98942fd6f
commit
6dc7fa9166
29
Chapter_08/8-16_imports.py
Normal file
29
Chapter_08/8-16_imports.py
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
# Exercise 8-16 Imports
|
||||||
|
# Learning Objective: Utilize all of the available import methods with previously made program and functions.
|
||||||
|
|
||||||
|
#import tshirts
|
||||||
|
|
||||||
|
#tshirts.make_shirt("L", "Hello Python World")
|
||||||
|
|
||||||
|
#=============================
|
||||||
|
|
||||||
|
#from tshirts import make_shirt
|
||||||
|
|
||||||
|
#make_shirt("L", "Hello Python World")
|
||||||
|
|
||||||
|
#==============================
|
||||||
|
|
||||||
|
#from tshirts import make_shirt as ms
|
||||||
|
|
||||||
|
#ms("L", "Hello Python World")
|
||||||
|
|
||||||
|
#=============================
|
||||||
|
|
||||||
|
#import tshirts as ts
|
||||||
|
|
||||||
|
#ts.make_shirt("L", "Hello Python World")
|
||||||
|
|
||||||
|
#=============================
|
||||||
|
|
||||||
|
from tshirts import *
|
||||||
|
make_shirt("L", "Hello Python World")
|
||||||
Loading…
x
Reference in New Issue
Block a user