Computer Science, asked by dwivedibl1010, 6 hours ago

write a program in python to input your name, age,class and passing percentage print all the details...​

Answers

Answered by ak2414833
0

Answer:

The West Germanic language of England, the United States, and other countries that are or have been under English influence or control.

b. The English language of a particular time, region, person, or group of persons: American

Answered by taraconvergent
1

Answer:

ANSWER

n = input("Enter name of student: ")

c = int(input("Enter class of student: "))

a = int(input("Enter age of student: "))

print("Name:", n, "Class:", c, "Age:", a)

print()

print()

print("Name:", n)

print("Class:", c)

print("Age:", a)

OUTPUT

Enter name of student: Kavya

Enter class of student: 11

Enter age of student: 17

Name: Kavya Class: 11 Age: 17

Name: Kavya

Class: 11

Age: 17

Similar questions