Assignment 1 What happens when you do print "x is %d, y is %f" %(x, y) Assignment 2 Enter the number 5.6 as input and store it in a variable called c. Assignment 3 What happens when you do not enter anything and hit enter. Assignment 4 How do you display a prompt and let the user enter input in next line. Assignment 5 Here are some self assessment questions for you to solve a = raw_input() and user enters 2.5. What is the type of a? str int float char a = 2 and b = 4.5. What does ``print "a is %d and b is Inline literal start-string without end-string. %2.1f" %(b, a)`` print? a is 2 and b is 4.5 a is 4 and b is 2 a is 4 and b is 2.0 a is 4.5 and b is 2