top of page
Search

PYTHON QUIZ

  • Writer: waclaw_koscielniak
    waclaw_koscielniak
  • Jun 18
  • 1 min read

for x in [1, 2]:

for y in [1, 4]:

if x != y:

print((y, x), end=" ")


[Running] python3 -u "/Users/name/test/test29.py"

(4, 1) (1, 2) (4, 2)

[Done] exited with code=0 in 0.052 seconds



Python Quiz
Python Quiz

 
 
 

1 Comment


Guest
Jun 19

Take some time to review this code.

Like
bottom of page