8 lines
101 B
Python
8 lines
101 B
Python
|
x = [1, 2, 3, 4]
|
||
|
y = [2*el+1 for el in x]
|
||
|
|
||
|
for el in y:
|
||
|
print("El {}".format(el))
|
||
|
|
||
|
print("Done")
|