For each task, do the following:
- Write the code in python,
- Run it.
- The output should include the result of the task AND your Student ID.
- Take the screen shot of the output.
- Your Student ID should be visible in the screenshots of all tasks.
- Print the screenshots for the output of all Tasks.
- Handwrite the code again in clear legible writing.
- Submit the screenshots and the handwritten code in class (hardcopy) before
Tuesday, December 14th, 2021
Task 1: Write a python program which takes a number from the user and then outputs the
given number in the reverse order (Example n = 125 than output is : 521 )
Task 2: Write a python program which takes in a number from the user, reverses it, and
outputs “Yes” if the original number and the reversed number are the same (example:
reverse of 121 is the same, reverse of 11 is the same, reverse of 7 is the same, reverse of 12 is
21 which is not the same, etc). If the original number and the reversed are not the same, it
outputs “No”.