Saved Bookmarks
| 1. |
Write a program in Python to enter your, Name, Class, Section, School and print it on screen in following format: Name: Class: Section: School: |
|
Answer» Answer: I am student of computer science please MARK me BRAINLIEST please w = input(" enter your name : ") x = input(" enter your class : ") y = input(" enter your SECTION : ") z = input(" enter your school name : ") print( " your name " + w + " /n " your class " + x + " /n " your section " + y + /n " your school name " + z /n ) I am student of computer science please mark me brainliest please |
|