diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..dfebde5 Binary files /dev/null and b/.DS_Store differ diff --git a/scripts/README.md b/scripts/README.md new file mode 100644 index 0000000..b763468 --- /dev/null +++ b/scripts/README.md @@ -0,0 +1,5 @@ +## Contributors + +### Kaia + +I will be working on data collection and cleaning for our project. diff --git a/scripts/hello_kaia.py b/scripts/hello_kaia.py new file mode 100644 index 0000000..46950ee --- /dev/null +++ b/scripts/hello_kaia.py @@ -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}") \ No newline at end of file