write a python program To find the number of students, who are from section ‘A
Answers
Answered by
3
Answer:
Students_from_section_A = X
Students_from_section_B= Y
Total_Number_of_students = X+Y
print(Students_from_section_A)
Note:-
- You must keep in mind that python is case sensitive.
- You must also keep in mind that if the name of a string has space, it must be given by underscore(_).
Hope it helped....
Similar questions