diff --git a/README.md b/README.md index 12e5149..f178733 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,16 @@ -# C2C Elite 101 Python Chatbot Starter +# Introduction + + +This is a repository created by Bryce Flick + + +## Usage + + +Run this command to execute the application: + + +`python filename.py This chatbot was created by Jorge Luna - update @@ -9,7 +21,7 @@ The project is meant to be a starter for your chatbot project. To use this project do the following: -1. Fork this project +1. Fork this project 2. From the code section of the repository click the green code button, select Codespaces tab in the popup and click the + button to create a codespace (you will be able to use this codespace in the browser or in a local installation of vs code) for more info [go here](https://docs.github.com/en/codespaces/developing-in-a-codespace/opening-an-existing-codespace) diff --git a/main.py b/main.py index 723e869..fc25af2 100644 --- a/main.py +++ b/main.py @@ -17,11 +17,11 @@ def get_user_name(): return input("Please enter your name: ") def greet_user(name): - print(f"Hello, {name}!") + print(f"Hello, {name}! I am Aniya the Reviewer.") def main(): user_name = get_user_name() greet_user(user_name) if __name__ == "__main__": - main() + main()