score = 70
if(score >=90) :
print('수')
elif(score >=80) :
print('우')
elif(score >=70) :
print('미')
elif(score >=60) :
print('양')
else :
print('가')
https://gcamp.tistory.com/tag/Python2019에서 가져옴
score = 70
if(score >=90) :
print('수')
elif(score >=80) :
print('우')
elif(score >=70) :
print('미')
elif(score >=60) :
print('양')
else :
print('가')
https://gcamp.tistory.com/tag/Python2019에서 가져옴