From 6dc7fa916642e97cef5573e8ec68890b3c78c340 Mon Sep 17 00:00:00 2001 From: cheeks <134818917+leftovertoast@users.noreply.github.com> Date: Thu, 27 Feb 2025 00:31:53 +0000 Subject: [PATCH] Moved 8-16 to correct folder --- Chapter_08/8-16_imports.py | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 Chapter_08/8-16_imports.py diff --git a/Chapter_08/8-16_imports.py b/Chapter_08/8-16_imports.py new file mode 100644 index 0000000..2e8ebe8 --- /dev/null +++ b/Chapter_08/8-16_imports.py @@ -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") \ No newline at end of file