Soru
1 for i in ra nge (5): 2 prin t (i, end=''t') 1 012345 2 1234 3 12345 012345 01234
Çözüm
3.2
(314 Oylar)
Deniz
Profesyonel · 6 yıl öğretmeni
Uzman doğrulaması
Cevap
The given code is a Python script that prints numbers from 0 to 4. Here's the corrected version of the code:```pythonfor i in range(5): print(f'{i:02}', end=' ')```Explanation:- `for i in range(5):` creates a loop that iterates 5 times, with `i` taking values from 0 to 4.- `print(f'{i:02}', end=' ')` prints the value of `i` formatted to have a width of 2 characters, with no newline character (`end=' '`) after each number.Output:```0 1 2 3 4```