Python Cara Dapat Menggunakan File Python yang Anda buat di semua proyek

# Step 1: Navigate to C:\Users\brigh\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\LocalCache\local-packages\Python310\site-packages
# Step 2: Create a new folder. The name of the folder will be what you want to call the module.
# Step 3: Inside the folder you created, create a file called "__init__.py" (Two leading underscores and two trailing underscores).
# Step 4: Inside __init__.py, store all functions and classes you will want to use for your project. You can import your module like this:
import my_module

# Tip: If you want to create more files for more functions, create another python file in the directory you created. Name it whatever you would like. (We will be using "test")
# Import your file like this:
import my_module.test
Tense Turtle