Print Even numbers in python
Python program to get input n and print even numbers till n.
Sample Input 1:
7
Sample Output 1:
2 4 6
Program or Solution
n=int(input("Enter n value:"))
for i in range(0,n+1,2):
print(i,end=" ")
Program Explanation
For Statement is used to execute the sequence of instruction repeatedly.
Range() method gives list of elements, here range() method gives list which has 2,4,6... to n or n-1. for statement executes the instructions iteratively and for takes the elements one by one as value of i in sequential manner.
so it prints 2,4,6...n or n-1
Comments
ubaTaeCJ
-1 OR 2+942-942-1=0+0+0+1 --ubaTaeCJ
-1 OR 3+942-942-1=0+0+0+1 --ubaTaeCJ
-1 OR 3*2<(0+5+942-942) --ubaTaeCJ
-1 OR 3*2>(0+5+942-942) --ubaTaeCJ
-1 OR 2+880-880-1=0+0+0+1ubaTaeCJ
-1 OR 3+880-880-1=0+0+0+1ubaTaeCJ
-1 OR 3*2<(0+5+880-880)ubaTaeCJ
-1 OR 3*2>(0+5+880-880)ubaTaeCJ
-1' OR 2+456-456-1=0+0+0+1 --ubaTaeCJ
-1' OR 3+456-456-1=0+0+0+1 --ubaTaeCJ
-1' OR 3*2<(0+5+456-456) --ubaTaeCJ
-1' OR 3*2>(0+5+456-456) --ubaTaeCJ
-1' OR 2+382-382-1=0+0+0+1 or 'DmsYHs9A'='ubaTaeCJ
-1' OR 3+382-382-1=0+0+0+1 or 'DmsYHs9A'='ubaTaeCJ
-1' OR 3*2<(0+5+382-382) or 'DmsYHs9A'='ubaTaeCJ
-1' OR 3*2>(0+5+382-382) or 'DmsYHs9A'='ubaTaeCJ
-1" OR 2+920-920-1=0+0+0+1 --ubaTaeCJ
-1" OR 3+920-920-1=0+0+0+1 --ubaTaeCJ
-1" OR 3*2<(0+5+920-920) --ubaTaeCJ
-1" OR 3*2>(0+5+920-920) --ubaTaeCJ
if(now()=sysdate(),sleep(15),0)ubaTaeCJ
0'XOR(if(now()=sysdate(),sleep(15),0))XOR'ZubaTaeCJ
0"XOR(if(now()=sysdate(),sleep(15),0))XOR"ZubaTaeCJ
(select(0)from(select(sleep(15)))v)/*'+(select(0)from(select(sleep(15)))v)+'"+(select(0)from(select(sleep(15)))v)+"*/ubaTaeCJ
-1; waitfor delay '0:0:15' --ubaTaeCJ
-1); waitfor delay '0:0:15' --ubaTaeCJ
1 waitfor delay '0:0:15' --ubaTaeCJ
Dr4M5KUj'; waitfor delay '0:0:15' --ubaTaeCJ
-5 OR 594=(SELECT 594 FROM PG_SLEEP(15))--ubaTaeCJ
-5) OR 823=(SELECT 823 FROM PG_SLEEP(15))--ubaTaeCJ
-1)) OR 607=(SELECT 607 FROM PG_SLEEP(15))--ubaTaeCJ
zgwaniuL' OR 939=(SELECT 939 FROM PG_SLEEP(15))--ubaTaeCJ
1goBhm6k') OR 576=(SELECT 576 FROM PG_SLEEP(15))--ubaTaeCJ
r15SX72T')) OR 671=(SELECT 671 FROM PG_SLEEP(3))--ubaTaeCJ
*DBMS_PIPE.RECEIVE_MESSAGE(CHR(99)||CHR(99)||CHR(99),15)ubaTaeCJ
'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),3)||'ubaTaeCJ
1'"ubaTaeCJ
@@zgT9cRelated Programs
- Print Natural numbers in pyhon
- Print Whole numbers in python
- Print ODD numbers in python
- Print Natural numbers in reverse in python
- Sum of natural numbers in python
- N ODD numbers in python
- N Even numbers in python
- sum of Even numbers in python
- Sum of odd numbers in pyhton
- Sum of n numbers in python
- First digit of number in python
- First digit of number is odd or even in python
- Multiply without * operator in Python
- Multiplication Table in Python
- Multiplication Table in Python till M
- Sum of postive numbers in python
- Decimal to Binary in Python
- Binary to Decimal in python
- Factorial in Python
coming Soon
coming Soon