Horje
input a number and print even numbers up to that number Code Example
input a number and print even numbers up to that number
def PrintEven(num):
    x=0
    while(num>0):
        if x%2==0:
            print(x)
            if x==num:
                break;
        x=x+1
            
    
PrintEven(200)




Python

Related
gauss elimination python numpy Code Example gauss elimination python numpy Code Example
how to get the number in the tenths place of a integer in python Code Example how to get the number in the tenths place of a integer in python Code Example
Pipeline_parameters Code Example Pipeline_parameters Code Example
how to save xml file in python Code Example how to save xml file in python Code Example
how to remove a string in python Code Example how to remove a string in python Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7