Frontend Development

I want algorithm in python

Submitted by morgana72, , Thread ID: 231390

Thread Closed
17-01-2022, 10:42 AM
#1
I want an algorithm in python
return even number on the function
please help me with that

RE: I want algorithm in python

#2
# list of numbers
list1 = [10, 21, 4, 45, 66, 93]

# iterating each number in list
for num in list1:

# checking condition
if num % 2 == 0:
print(num, end=" ")


Input: list1 = [2, 7, 5, 64, 14]
Output: [2, 64, 14]

Input: list2 = [12, 14, 95, 3]
Output: [12, 14]

RE: I want algorithm in python

#3
if you are a programmer you can use these website, git.ir, https://nulling.net/, w3schools.com

RE: I want algorithm in python

OP
#4
thanks a lot, this the best website

RE: I want algorithm in python

#5
def even(number):
return number%2==0 #returns True if the number is even

Users browsing this thread: 2 Guest(s)