Register using your ShanghaiTech email address. Log into the gradebot and complete your profile.
Develop an echo program
Develop an echo program in Python 3. The program reads one line from the standard input and writes it back to the standard output.
You may use the Python built-in function input() to read from the standard input, and print() to write to the standard output.
The input and output of your program must match byte by byte.
Tasks
Clone the program repository from the gradebot: git clone metastasis@shtech.org:user/{username}/1/0
where {username} is the username in your email address.
Develop your program. Enter the directory 0 that the above command creates and save your Python program as echo.py.
Commit and push your program to the gradebot:
git add echo.py
git commit
git push origin master
Check the gradebot for your score (and the scores of your classmates).