Read:
- Downey, A. (2015). Think Python: How to think like a computer scientist. Green Tea Press. https://greenteapress.com/thinkpython2/thinkpython2.pdf
- Iqbal, W. (2020, July 27). How to install Python 3.8.5 on Windows 10 [2020] – YouTube. [Video]. YouTube. https://www.youtube.com/watch?v=yiCUmJon-5g
a. Think Python: How to think like a computer scientist.
Review Chapter 1 – The Way of the Program (pp. 1 – 8) and the examples presented in it.b. For installing the IDLE development environment on UNIX:
Using Python on Unix platforms. (n.d.). Python Documentation. https://docs.python.org/3/using/unix.html.
For Windows, refer to: Using Python on Windows. (n.d.). Python Documentation. https://docs.python.org/3/using/windows.html
a. If you are trying to print your name, what happens if you leave out one of the quotation marks or both? Why?b. What is the difference between * and ** operators in Python? Explain with the help of an example.c. In Python, is it possible to display an integer like 09? Justify your answer.d. Run the commands type(’67’) and type(67). What is the difference in the output? Why?
a. To multiply your age by 2 and display it. For example, if your age is 16, so 16 * 2 = 32 bb. Display the name of the city, country, and continent you are living in.c. To display the examination schedule (i.e., the starting and the ending day) of this term.d. Display the temperature of your country on the day the assignment is attempted by you.
Add the Python codes and screenshots of the related outputs in the same Word document created for Part 1 submissions. Also, explain what you learned from the results of each experiment in part 2 questions.