Skip to content
Open
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
16 changes: 14 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()