for-coder
Finally the π€ agents working Β»GithubΒ«
Planning to make the agents work in different way i will let you know
gonna be a good project for the public ππ
gonna be a good project for the public ππ
π₯5π€2
for i in range(3):
for j in range(3):
if j == 2:
break
else:
continue
print(i)
else:
print("Done")
What's the output of the above code?
Anonymous Quiz
47%
0 1 2 Done
9%
Done
9%
0 1 2
14%
Nothing
21%
Syntax Error
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.
π2π―1
This media is not supported in your browser
VIEW IN TELEGRAM
I wonder what they said to the robot πππππ
π3β€1
funcs = []
for i in range(3):
funcs.append(lambda: i)
print([f() for f in funcs])
What's the output of the above code?
Anonymous Quiz
46%
[0, 1, 2]
19%
[2, 2, 2]
12%
[1, 2, 3]
4%
[0, 0, 0]
19%
Reference error