I Haz Codes
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")

| minamekic | shinx284680 |