Project Bangya
Project Bangya
Gaurav Yadav
XII-Sci
CERTIFICATE
______________
Modules USED :-
#. Import()
#. Import os
#. Import platform
Program for SCHOOL MANAGEMENT.
import os
import platform
x = "#" * 30
y = "=" * 28
global bye #Making Bye As Super Global
Variable
bye = "\n {}\n# {} #\n# ===> Brought To You
By <=== #\n# ===> code-projects.org <=== #\n# {}
#\n {}".format(x, y, y, x) # Will Print GoodBye
Message
------------------------------------------------------
|========================================
==============| |======== Welcome To
Student Management System ========|
|========================================
============== |
------------------------------------------------------
Enter 1 : To View Student's List
Enter 2 : To Add New Student
Enter 3 : To Search Student
Enter 4 : To Remove Student
""")
try: #Using Exceptions For Validation
userInput = int(input("Please Select An
Above Option: ")) #Will Take Input From User
except ValueError:
exit("\nHy! That's Not A Number") #Error
Message
else:
print("\n") #Print New Line
runAgain()
BIBLIOGRAPHY