Computer Science

Find the errors in following code fragment : (The input entered is XI)


c = int (input ( "Enter your class") )
print ("Your class is", c)

Python Funda

26 Likes

Answer

The input value XI is not int type compatible.

Answered By

14 Likes


Related Questions