ONLINE COMPILER FOR PRACTICE QUESTIONS
It may send errors on Mobile Version, Practice on Desktop Site.
LECTURE 1
You have the following information assigned to different variables:
Color : “Red, Black, Blue”
Material : “Cotton”
Size : “S, M, L, XL, XXL”
Print it into the following format:
Output : Our T-shirts comes in all different colors Red, Black, Blue in S, M, L, XL, XXL sizes made up of pure Cotton.
Q2. Write a program to ask user about his name and his age ?
a) And print it in the following format :-
Output : My name is __ and i am __ years old.
print("Our T-shirts comes in all different colors " + Color
+ " in " + Size + " sizes made up of pure " + Material + ".")name = input("What is your name ? ")
age = input("What is your age ? ")
print("My name is " + name + " and i am " + age +" years old. ")