Student Activity
Student Activity Guide:
1) Creating and Using Modules
def greet(name):
return f"Hello, {name}!"import my_module
print(my_module.greet("Alice"))2) Importing and Using Built-in Modules
3) Structuring Python Projects with Packages
4) Virtual Environments and Dependency Management
Last updated