Generation

generate functionThu, 30 Mar 2023

numeros inversos hasta el 100 while

def inversos(): i = 100 while i > 0: print(i) i = i - 1 inversos()

Want to kickstart your project?Use the new AI Studio to create your code