python
python
2 Basic user interactions using the print() and input() functions. 4-5
a. Write a simple python script using the print function in a text editor,
save it with the extension “.py”. Run it in the terminal / command
prompt.
b. Take input two strings from the user, and print the first one twice, and
the other one thrice.
c. Ask the user to enter two numbers, and output the sum, product,
difference, and the GCD.
d. More programs that test concepts learned in week 1 which involves
the usage of the print and input functions.