Which of the following expressions evaluate to True? (Choose two.)
Which of the following expressions evaluate to True? (Choose two.)
BCD are TRUE TESTED: print(ord("0") - ord("9") == 10) print(len("''")== 2) print(chr(ord('z') - 1) == 'y') print(len("1234") == 4)
C, D is correct
C and D are corrects
As tested in my IDE