subjects=['math','English','physical','art','english']
print("We must learn well:")
print("I can not learn it well:")
print("Are you sure you want to choose the course?")
subjects=['math','English','physical','art','english']
print("Are you sure you want to choose the course?")
exist_subjects=['math','English','physical','art','english']
required_subjects=['math','English','chinese','gym',]
for required_subject in required_subjects:
if required_subject in exist_subjects:
subjects=['math','English','physical','art','english']
if subject not in subjects:
if subject not in subjects:
print(subject=='chinese')
print(subject=='english')
|
|