What is the wrong with the following code snippet? grade = i…
What is the wrong with the following code snippet? grade = int(input(“Enter student grade: “))if grade >= 90 : letterGrade = “A”if grade >= 80 : letterGrade = “B”if grade >= 70 : letterGrade = “C”if grade >= 60 : letterGrade = “D”else : letterGrade = “E”print(letterGrade)
Read Details