From ab400a5539d91787249186da7df7e6e0a780bfc1 Mon Sep 17 00:00:00 2001 From: setconst Date: Wed, 3 Jun 2026 16:42:59 -0700 Subject: [PATCH] Add import statements and example prints in import.py --- .Python-helps/import.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .Python-helps/import.py diff --git a/.Python-helps/import.py b/.Python-helps/import.py new file mode 100644 index 0000000..11dedb5 --- /dev/null +++ b/.Python-helps/import.py @@ -0,0 +1,5 @@ +import os +import tkinter as tk +# Examples +print("I did import os and import tkinter as tk") + Print("Is this too fast?")