7 lines
80 B
Python
7 lines
80 B
Python
|
|
def fizzbuzz(nombre):
|
|
return 1
|
|
|
|
for nombre in range(1, 101):
|
|
print(nombre)
|