Skip to content

zeroones

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

python qna

Python Program To Replace Number With String

11 October 2022 by zeroones.org

“How to replace the number with the string” is a common question in python programming which is used in normal programming also. To implement this concept we have to use …

Read more

Python Program To Split String Into Sub String From Special Characters

10 October 2022 by zeroones.org

Python Program To Split String Into Sub String From Special Characters “Split string into substring from special character” is useful in many ways when programmers try to manipulate the string. …

Read more

Python Program To Remove Common Elements From Two List

9 October 2022 by zeroones.org

Python Program To Remove Common Elements From Two List “How To Remove Common Elements From Two List using python” is useful concept, because sometimes programmer want to select the unique …

Read more

Python Program To Remove Duplicates From List

8 October 2022 by zeroones.org

Python Program To Remove Duplicates From List “How to remove duplicates from list” is a popular question and very frequently asked in interviews also. There are so different methods to …

Read more

Python Program To Test String Starts With A Capital Letter

7 October 2022 by zeroones.org

Python Program To Test String Starts With A Capital Letter 01. Example Using isupper() function with For loop. Initialize String. Set a flag value False. Check with isupper() function for …

Read more

Python Program To Print Aligned Dictionary

5 October 2022 by zeroones.org

How To Print Aligned Dictionary Python” is a useful concept because sometimes we want a dictionary to represent data in tabular format. It gives a similar user interface which is …

Read more

Python Program To Solve Quadratic Equation

12 September 2022 by zeroones.org

Python Program To Solve Quadratic Equation In algebra, a quadratic equation is any equation that can be rearranged in standard form: where x represents an unknown, and a, b, and …

Read more

Python Program to Check Prime Number Using Counter And Function

11 September 2022 by zeroones.org

Python Program to Check Prime Number Using Counter And Function Example n= 10 i=2 counter = 0 if n > 0: def primeNumber(N): counter=0 for i in range(2,int(N/2)+1): if (N%i …

Read more

Python Program to Check Prime Number Using Flag

10 September 2022 by zeroones.org

Python Program to Check Prime Number Using Flag Example n= 10 flag = False i=2 if n > 0: while i<n: if (n%i==0): flag=True i+=1 if flag: print(n,’ is not …

Read more

Python Program to Check Given Number is Odd Or Even Using Counter

9 September 2022 by zeroones.org

Python Program to Check Given Number is Odd Or Even Using Counter Example number = int(input('Enter the value: ')) counter = 0 if (number%2 == 0): counter = 1 if …

Read more

Older posts
Newer posts
← Previous Page1 … Page5 Page6 Page7 … Page10 Next →

Recent Posts

  • Types of Semiconductor Memories
  • Volatile Memory: SRAM and DRAM
  • 4×1 Multiplexer Modeling Using Verilog With Testbench
  • Selection Sort Python Implementations
  • Bubble Sort Python Implementations
© 2025 zeroones, All Rights Reserved.