Santiago Moresi

Generation

generate functionMon, 05 Jun 2023

Método de la División Sucesiva por 2

def divide(a, b): return a // b def modulo(a, b): return a % b def division(a, b): c = a // b d = a % b return c, d division(5, 2)

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