Generation

generate functionThu, 27 Apr 2023

Hacer un programa que muestre un conteo 3,2,1 y muestre buenas noches

def countdown(n): for i in range(n, 0, -1): print(i) print('Buenas noches') countdown(3)

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