Santiago Moresi

Generation

generate functionWed, 07 Jun 2023

Un arange con números enteros del 0 al 9

def arange(a, b): l = [] for i in range(a, b): l.append(i) return l arange(1, 10)

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