Answer on Question #51415, Programming, Python
Problem.
Enter the student information to the keyboard like roll no.,name,percentage,class display on screen
Code.
roll_no = input("Roll no.: ")
name = input("Name: ")
percentage = input("Percentage: ")
form = input("Class: ")
print(roll_no + " " + name + " " + percentage + " " + form)
input()Output.
Roll no.: 123
Name: Andrew
Percentage: 98%
Class: B
123 Andrew 98% B
http://www.AssignmentExpert.com/