Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

Python program to print odd numbers in a List

# Python program to print odd Numbers in a List
  
# 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 = " ")
Comment

Python program to count Even and Odd numbers in a List

# Python program to count Even
# and Odd numbers in a List
  
# list of numbers
list1 = [10, 21, 4, 45, 66, 93, 1]
  
even_count, odd_count = 0, 0
  
# iterating each number in list
for num in list1:
      
    # checking condition
    if num % 2 == 0:
        even_count += 1
  
    else:
        odd_count += 1
          
print("Even numbers in the list: ", even_count)
print("Odd numbers in the list: ", odd_count)
Comment

python print odd numberrs

# Python program to print all ODD numbers in the range[a, b]
a, b = (7, 19)

for num in range(a, b+1): # b+1 is to include b itself
  if num & 1:
    print(num, end = ' ')
# output:
# 7 9 11 13 15 17 19
Comment

Python program to print even numbers in a list

#Python program to print
#even numbers in a list using recursion
def evennumbers(list, n=0):
    #base case
    if n==len(list):
        exit()
    if list[n]%2==0:
        print(list[n], end=" ")
    #calling function recursively
    evennumbers(list, n+1)
list1 = [10, 21, 4, 45, 66, 93]
print("Even numbers in the list:", end=" ")
evennumbers(list1)
#this code is contributed by Shivesh Kumar Dwivedi
Comment

Python program to print even numbers in a list

# Python program to print Even Numbers in a List
 
# 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=" ")
Comment

list comprehension odd numbers python

L=([i%2 for i in range(10)])
print(L)
Comment

PREVIOUS NEXT
Code Example
Python :: Dummy or One Hot Encoding code with pandas 
Python :: how to record the steps of mouse and play the steps using python 
Python :: read text file in python 
Python :: Installing python module from within code 
Python :: Violin Plots, Python 
Python :: from django.conf.urls import patterns 
Python :: how to pick a random english word from a list 
Python :: python numpy kurtosis 
Python :: check date on template django 
Python :: empty directory if not empty python 
Python :: default argument in flask route 
Python :: pipenv 
Python :: pandas repeat rows n times 
Python :: use of // in python 
Python :: save a seaborn heatmap 
Python :: calculate integral python 
Python :: python change a key in a dictionary 
Python :: how to sort a list in python using lambda 
Python :: Find faculty of a number python 
Python :: plt.savefig 
Python :: how to convert tuple to int in python 
Python :: pyplot bar plot colur each bar custom 
Python :: fillna with mean pandas 
Python :: pip install python 
Python :: scatter plot of a dataframe in python 
Python :: how to use python to sleep if the user is not using the system 
Python :: chart-studio python install 
Python :: python trace table generator 
Python :: django template tags capitalize 
Python :: python code to remove vowels from a string 
ADD CONTENT
Topic
Content
Source link
Name
7+6 =