write a program in python to print your school name,your name,class,roll no and section.
Answers
Answered by
3
Answer:
sName = input("Enter your school name: ")
uName = input("Enter your name: ")
class = input("Enter your class: ")
rollNum = input("Enter your roll number: ")
section = input("Enter your class section: ")
print(f" I am {uName}. /n I am a student of {sName}./n I study in {class} {section}. My Roll Number is {rollNum}")
Similar questions