diff --git a/8-16_imports.py b/8-16_imports.py deleted file mode 100644 index 2e8ebe8..0000000 --- a/8-16_imports.py +++ /dev/null @@ -1,29 +0,0 @@ -# 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") \ No newline at end of file