I Haz Codes

Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors
Menu
great subjects

Enter the code below into python. It will display “great subject” when the user enters Maths or Computer science. Change the code so it will –
– Display great subject for Biology and Physics as well.

subject = input("Enter a subject - ")
if subject == "CS":
   print("CS is a great subject")
if subject == "Maths":
   print("Maths is a great subject")



Comments are closed.

Information