QuestionQ95
Miscellaneous (List Comprehensions, Lambdas, Closures, I/O)Which of the following expressions evaluate to True?
Choose two
- A '1' + '1' + '1' < '1' * 3'
- B 121 + 1 != '1' + 2 * '2'
- C 'AbC'.lower() < 'AB'
- D '3.14' != str(3.1415)
Community Discussion