Input and Output Warm Up#

Section Title: Input and Output Warm Up

Warm Up Question-1#

Write a program that prompts the user for a number and displays the double of that number.

Warm Up Question-2#

Write a program that prompts the user for a name of a country and displays the number of chareacters in that country’s name.

Warm Up Question-3#

Use the variables \(x,y,z\) and a single print() function to display 3 <= 7 <=9.
Hint: Change the value of the sep parameter.

x, y, z = 3, 7, 9

Warm Up Question-4#

Modify only the end parameter of the given print statements to produce the output A,B??C===D.

print('A')
print('B')
print('C')
print('D')