

InterviewSolution
Saved Bookmarks
1. |
Write python command to display your school name,class and section,separated by"-" |
Answer» The following codes must be typed in script mode, saved and then executed.CODE:school = input("Enter your school name:")Class = input("Enter your class:")section = input("Enter your section:")print("Your details are", school, "Class", class, "section", section)OUTPUT:\xa0Westchester High\xa011\xa0D | |