Revision In Tutorial 1:Hello World Program , we've learnt how to print the words. In Tutorial 2:Doule Quote or Single Quote , we've written two program that prints I'm Aung Aung. (one program using double quotes and one using double quotes) Review Exercise 1: What happens if you leave out both the quotation marks? Review Exercise 2 :Write a program that prints 5 (by using either single quotes or double quotes). What happens if you leave out both the quotation marks? Review Exercise 3 : What function is used to display the words to the user? In Review exercise 1, you will get error message. But in Review Exercise 2, you won't. This is because 5 and "I'm Aung Aung" belong to different data types: 5 is an integer while "I'm Aung Aung" is a string. In Python, the print() function doesn't need any quotes to print the integer value, but it needs either two single quotes or two double quotes to print the string value. A value is one of the ba...