- Create a folder in your week_01/day_1 directory
mkdir guessing_game
cd guessing_game
- Initialize a git repository in the folder
git init
- Create a new file called guessing_game.py
touch guessing_game.py
- In the file, create a simple Python guessing game using:
- User Input
- If-Else statement
- Stage the file
git add .
- Commit the files to the repository
git commit -m "first commit"
- Create a new repository called "guessing-game"
- Add the Github remote
- Push to the remote repository
git push origin main