for-coder
前往频道在 Telegram
Chat for yapping the latest topics and some project show case @FORCODERR 👥 @firaflash 👨💻 curious dev
显示更多471
订阅者
-124 小时
-27 天
+830 天
帖子存档
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")