Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Що виведе наступний код:
lst = ['hello', 0, 1, True, False, 3.14]lst.remove(True)lst.remove(False)print(lst)
['hello', 3.14]
['hello', 0, 1, 3.14]
['hello', 1, False, 3.14]
None
['hello', True, False, 3.14]
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!