Skip to content

ZEROONES

  • Home
  • Verilog
  • Python
  • Arduino
  • C
  • Contact

ZEROONES

  • Home
  • Verilog
  • Python
  • Arduino
  • C
  • Contact

Python Program To Check Three Input Values Representing Right Angled Triangle Or Not

27 October 2022 by zeroones.org

Python Program To Check Three Input Values Representing Right Angled Triangle Or Not The above image is showing the “Pythagoras theorem” where the sum of the “BASE” square and the …

Read more

Python Program To Print All ASCII Values

26 October 2022 by zeroones.org

Python Program To Print All ASCII Values   Example def printASCIIValues(): for i in range(32,127): print('The Decimal Value ',i,' Has ASCII Value ',chr(i)) printASCIIValues() Output: The Decimal Value 32 Has …

Read more

Python Program To Find First Time Of Occurrences Index Of An Element In List

25 October 2022 by zeroones.org

Python Program To Find First Time Of Occurrences Index Of An Element In List Example def firstTimeOccuringIndex(dataArray,N): count = 0 for i in range(0,len(dataArray)): if(dataArray[i] == N): print("{} is First …

Read more

Python Program To Find The Total Number Of Occurrences Of An Element In List

24 October 2022 by zeroones.org

Python Program To Find The Total Number Of Occurrences Of An Element In List Example def elementOccuranceData(dataArray,N): count = 0 for i in range(0,len(dataArray)): if(dataArray[i] == N): count+=1 print(“{} is …

Read more

Python Program To Find LCM Of Two Numbers

23 October 2022 by zeroones.org

Python Program To Find LCM Of Two Numbers Example def lcmCalculation(x, y): greater = max(x,y) while(True): if((greater % x == 0) and (greater % y == 0)): lcm = greater …

Read more

Python Program To Display Prime Numbers In A Given Range

22 October 2022 by zeroones.org

Python Program To Display Prime Numbers In A Given Range Example In this tutorial, we are going to find the prime numbers between two given numbers or in a particularly …

Read more

Python Program To Remove Duplicates From A List Using For Loop

21 October 2022 by zeroones.org

Python Program To Remove Duplicates From A List Using For Loop   01. Example Apply on string list. def removeDuplicate(duplicate): data = [] for num in duplicate: if num not …

Read more

Python Program To Remove Duplicates From A List Using Dictionary

20 October 2022 by zeroones.org

Python Program To Remove Duplicates From A List Using Dictionary   01. Example Apply on string list. cars = [‘Lamborghini’,’Honda’, ‘Jeep’, ‘Honda’, ‘BMW’,’Hyundai’, ‘Hyundai’, ‘BMW’, ‘Ford’] print(“Array: n”, cars) result …

Read more

Python Program To Remove Duplicates From A List Using Set

19 October 2022 by zeroones.org

Python Program To Remove Duplicates From A List Using Set   01. Example Apply on string list. cars = [‘Lamborghini’,’Honda’, ‘Jeep’, ‘Honda’, ‘BMW’,’Hyundai’, ‘Hyundai’, ‘BMW’, ‘Ford’] print(“Array: n”, cars) print(“nnArray …

Read more

Python Program To Find Maximum Frequency Character In String Using ASCII

18 October 2022 by zeroones.org

Python Program To Find Maximum frequency character in String Using ASCII   01. Example ​ def mostFrequency(stringData): ASCII_SIZE = 256 character = [0] * ASCII_SIZE max = -1 char = …

Read more

Older posts
Newer posts
← Previous Page1 … Page21 Page22 Page23 … Page38 Next →

Recent Posts

  • C Programming File handling
  • C Programming Unions
  • C Programming Structures
  • C Programming Pointers
  • C Programming Arrays
© 2026 zeroones, All Rights Reserved.