top of page
Search

PYTHON CODING

  • Writer: waclaw_koscielniak
    waclaw_koscielniak
  • Jul 10, 2025
  • 1 min read

def squares():

for i in range(1, 4):

yield i*i

s = squares()

print(list(s))


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

[1, 4, 9]

[Done] exited with code=0 in 0.052 seconds

Python coding.
Python coding.

 
 
 

Recent Posts

See All

Comments


bottom of page