Revision In lesson 1:Hello World Program , we've learnt how to print the words. To print the words, we use the print() function and put the words we want to print between the quotes (either single quotes or double quotes is okay) inside the parenthesis. Review Exercise 1:Write a program that prints (actually displays) I am Aung Aung using single quotation marks. Review Exercise 2:Write a program that prints I am Aung Aung using double quotation marks. Review Exercise 3:Write a program that prints I'm Aung Aung using single quotation marks. Review Exercise 4:Write a program that prints I'm Aung Aung using double quotation marks. Double quote Single Quote I am Aung Aung okay okay I'm Aung Aung okay error In Review Exercise 2 and 4, we don't get any error message. We use double quotes inside the parenthesis in Review Exercise 4 so that the computer doesn't confuse. But in Review Exercise 3, we use print('I'm Aung Aun...