write the Python coding to accept two numbers( m, n) and print all the even numbers between them
Answers
Answered by
1
Hëy Frïèñd...
Here is the Coding...
m = int(input("Enter first number:"))
n = int(input("Enter second number:"))
for a in range(m,n)
if a%2==0 :
print(a)
.
.
.
.
.
I Hope This Will Help You ^_^^_^
Answered by
0
write the Python coding to accept two numbers( m, n) and print all the even numbers between them
n=int(input("enter the even number from where you wana start :"))
m=int(input("enter the place till you wna find :"))
for i in range(n,m,2):
print(i)
# created by XxItzAnvayaXx (brainly)[am i the only lass who knows programming]
--------------------------------------------------------------------------------------------------------------------------
Attachments:
Similar questions