Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Mis trükitakse konsooli antud koodi käivitamisel?
a = ['hall']b = ['jänes']c = a + bprint(b + c[1:2] * 2 + a * 3)
['jänes', 'jänes', 'jänes', 'hall', 'hall', 'hall']
jänesjänesjäneshallhallhall
TypeError
['jänes'] ['hall', 'jänes', 'hall', 'jänes'] ['hall', 'hall', 'hall']
['jänes', 'hall', 'jänes', 'hall', 'jänes', 'hall', 'hall', 'hall']
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!