Guys you can use this site https://trinket.io/python to try out your python codes without having a computer that runs python.
Example code:
numara1 = int(input("Input one number"))
numara2 = int(input("input another number to divide first number"))
if numara1 % numara2 == 0:
print("it divides")
else:
print("it doesn't divide")
Happy coding