Untitled

Anonymous
python
05/02/2024 11:33 AM
164 B
17
Indexable

liczby = [7, 5, 2, -4, 11, 13, 8, 115, -1, -48]

for liczba in liczby:
    if liczba >2:
        print(liczba)
        
Editor is loading...
Leave a Comment