code-examples/current/algorithms/python/app.py

8 lines
101 B
Python
Raw Normal View History

2025-03-06 18:34:45 +00:00
x = [1, 2, 3, 4]
y = [2*el+1 for el in x]
for el in y:
print("El {}".format(el))
print("Done")