#basics
Read more stories on Hashnode
Articles with this tag
Write a Python program to find the number of occurrences of a given element in a list : l=[1,2,3,4,4] j=4 count=0 for i in l: if i==j: ...
Write a Python program to print the Fibonacci series up to a given number: n = int(input("Enter the number: ")) n1, n2 = 0, 1 count = 0 if n <= 0: ...
Write a Python program to find the sum of all odd numbers between 1 and a given number. n=int(input("enter the number")) sum=0 for i in range(0,n+1): ...
DAY 2: In this blog, you will get to know about the basic data types of python. DATA TYPESData types are nothing but the classification of the data...