Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
[Python] Який з наведеного нижче є правильним оператором if/else в Python, якщо x та y визначені належним чином:
if x < y: write('study'); write('education'); write('best')
if x < y: print('study') else: print('best')
if x < y: if x > 10: print('education')
if x < y: print('study')elif y < x: print('education')else: print('best')
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!