I'll just give you a hint.
print(184 % 3 == 0) # False
print(184 % 4 == 0) # True
import random as r
x = r.randint(1,300)
n = input ("Enter n of the multiple of n of the random function: ")
y = int(n)
print(x, "%", y, "=")
a = input ("x is a multiple of y?")
b = int(x)
if b % y == 0:
print(") is a multiple of y.")
else:
print("Wrong answer!) The number entered is not a multiple of y")
572 Uncaught (inpromise) Error on Electron: An object could not be cloned
565 PHP ssh2_scp_send fails to send files as intended
579 GDB gets version error when attempting to debug with the Presense SDK (IDE)
819 When building Fast API+Uvicorn environment with PyInstaller, console=False results in an error
© 2024 OneMinuteCode. All rights reserved.