Computer Science, asked by shahissain, 1 year ago

write the Python coding to accept two numbers( m, n) and print all the even numbers between them​

Answers

Answered by QwertyPs
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 XxItzAnvayaXx
0

\huge\underbrace\pink {\dag Final \: Question:- \dag}

write the Python coding to accept two numbers( m, n) and print all the even numbers between them​

\huge\underbrace\purple {\dag Final \: Question:- \dag}

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