for-coder
Kanalga Telegramβda oβtish
Chat for yapping the latest topics and some project show case @FORCODERR π₯ @firaflash π¨βπ» curious dev
Ko'proq ko'rsatish471
Obunachilar
-124 soatlar
-27 kun
+830 kun
Postlar arxiv
471
Lwky, Python is harder when you already know another programming language π€§ Your old habits keep fighting to cope, but Python plays by its own rules.
471
for i in range(3):
for j in range(3):
if j == 2:
break
else:
continue
print(i)
else:
print("Done")