diff --git a/add.py b/add.py new file mode 100644 index 00000000..5ae57fb9 --- /dev/null +++ b/add.py @@ -0,0 +1,10 @@ +# Get user input for name and favorite sport +name = input("Adama Sall: ") +favorite_sport = input("Basketball: ") + +# Display the collected information +print("\nHello,", name + "!") +print("Your favorite sport is:", favorite_sport) + +# Wait for user to press Enter before closing +input("\nPress Enter to exit...") \ No newline at end of file