Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
5 changes: 5 additions & 0 deletions scripts/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## Contributors

### Kaia

I will be working on data collection and cleaning for our project.
11 changes: 11 additions & 0 deletions scripts/hello_kaia.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
"""
A simple hello world script by Kaia.
"""
name = "Kaia"
print(f"Hello from {name}!")
print("This is my first script in our group project.")

# Add a simple calculation
favorite_number = 7 # Change this to your actual favorite number
result = favorite_number * 2
print(f"My favorite number times 2 is: {result}")