for-coder
الذهاب إلى القناة على Telegram
Chat for yapping the latest topics and some project show case @FORCODERR 👥 @firaflash 👨💻 curious dev
إظهار المزيد471
المشتركون
-124 ساعات
-27 أيام
+830 أيام
أرشيف المشاركات
470
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.
470
for i in range(3):
for j in range(3):
if j == 2:
break
else:
continue
print(i)
else:
print("Done")