Unsolved python problems
Unsolved python problems
( pyGuru )
YouTube : https://youtube.com/c/pyGuru
Telegram : https://t.me/pyGuru
Python Program to Print all Integers that Aren’t Divisible by Either 2 or 3 & Lie between 1 & 50
Python Program to Find Numbers which are Divisible by 7 and Multiple of 5 in a Given Range
Python Program to Find the Binary Equivalent of a Number without Using Recursion
Python Program to Take in the Marks of 5 Subjects and Display the Grade
Python Program to Check if a Date is Valid and Print the Incremented Date if it is
Python Program to Print Numbers in a Range (1,upper) Without Using any Loops
Python Program to Read a Number n and Print the Natural Numbers Summation Pattern
Python Program to Check Whether the Entered Number is a Amicable Number or Not
Python Program to Find all Numbers in a Range which are Perfect Squares and Sum of all Digits in the
Number is Less than 10
Python Program to Accept Three Digits and Print all Possible Combinations from the Digits
Factorial & Fibonacci Programs in Python
Python Program to Read Two Numbers and Print Their Quotient and Remainder
Python Program to Find the Gravitational Force Acting Between Two Objects
Python Program to Form an Integer that has the Number of Digits at Ten’s Place and the Least
Significant Digit of the Entered Integer at One’s Place
Python Program to Find the Sum of Series 1 + 1/2 + 1/3 + 1/4 + ……. + 1/N
Python Program to Find the Sum of the Series: 1 + x^2/2 + x^3/3 + … x^n/n
Python Program to Remove the nth Index Character from a Non-Empty String
Python Program to Take in a String and Replace Every Blank Space with Hyphen
Python Program to Determine How Many Times a Given Letter Occurs in a String Recursively
Python Program to Calculate the Length of a String Without Using a Library Function
Python Program to Calculate the Number of Words & Characters Present in a String
Python Program to Calculate the Number of Upper Case & Lower Case Letters in a String
Python Program to Print All Permutations of a String in Lexicographic Order using Recursion
Python Program to Print All Permutations of a String in Lexicographic Order without Recursion
Python Program that Displays which Letters are in the First String but not in the Second
Python Program that Displays which Letters are in the Two Strings but not in Both
Python Program to Form a New String Made of the First 2 and Last 2 characters of a String
Python Program to Take 2 Strings & Display the Larger String without using Built-in Functions
Python Program to Form a New String where the First & Last Character have been Exchanged
Python Program to Accept a Hyphen Separated Sequence of Words as Input & Print it
Python Program to Count the Occurrences of Each Word in a Given String Sentence
Python Program to Count the Number of Vowels Present in a String using Sets
Python Program to Check whether a given String is Palindrome or not using Recursion
Python Program to Find All Numbers which are Odd and Palindromes Between a Range of Numbers
without using Recursion
Python Programs on Dictionary
Python Program to Create a Dictionary with Key as First Character and Value as Words Starting with that
Character
Python Program to Generate a Dictionary that Contains Numbers in the Form (x,x*x)
Python Program to Count the Frequency of Words Appearing in a String Using a Dictionary
Python Program to Create a List of Tuples with the First Element as the Number and Second Element as
the Square of the Number
Python Program to Remove All Tuples in a List of Tuples with the USN Outside the Given Range
Python Program to Sort a List of Tuples in Increasing Order by the Last Element in Each Tuple
Python Programs on Classes & Objects
Python Program to Append, Delete and Display Elements of a List Using Classes
Python Program to Create a Class and Compute the Area and the Perimeter of the Circle
Python Program to Create a Class in which One Method Accepts a String from the User and Another
Prints it
Python Program to Create a Class and Get All Possible Subsets from a Set of Distinct Integers
Python Program to Count the Number of Times a Certain Letter Appears in the Text File
Python Program to Read a Text File and Print all the Numbers Present in the Text File
Python Program to Print Largest Even and Largest Odd Number in a List
Python Program to Put Even and Odd Elements in a List into Two Different Lists
Python Program to Print Sum of Negative Numbers, Positive Even & Odd Numbers in a List
Python Program to Search the Number of Times a Particular Number Occurs in a List
Python Program to Sort the List According to the Second Element in Sublist
Python Program to Read a List of Words and Return the Length of the Longest One
Python Program to Generate Random Numbers from 1 to 20 and Append Them to the List
Python Program to Remove the ith Occurrence of the Given Word in a List
Python Program to Find the Total Sum of a Nested List Using Recursion
Python Program to Create a Linked List & Display the Elements in the List
Python Program to Print Nth Node from the last of a Linked List
Python Program to Interchange two Elements of the List without touching the Key Field
advertisement
Python Program to Implement a Doubly Linked List & Perform Insertion & Deletion Operations
Python Program to Find MST (Minimum Spanning Tree) using Kruskal’s Algorithm
Python Program to Find MST (Minimum Spanning Tree) using Prim’s Algorithm
Python Program to Select the ith Smallest Element from a List in Expected Linear Time
Python Program to Select the ith Largest Element from a List in Expected Linear Time
Python Program to solve Maximum Subarray Problem using Divide and Conquer
Python Program to Find the Smallest Set of Unit-Length Closed Intervals that Contains All Points using
Greedy Algorithm
Python Program to Print nth Fibonacci Number using Dynamic Programming with Memoization
Python Program to Print nth Fibonacci Number using DP with Bottom-Up Approach
Python Program to Solve Rod Cutting Problem using Dynamic Programming with Memoization
Python Program to Solve Rod Cutting Problem using DP with Bottom-Up Approach
Python Program to Solve 0-1 Knapsack Problem using DP with Bottom-Up Approach
Python Program to Find Longest Common Subsequence using Dynamic Programming with Memoization
Python Program to Find Longest Common Subsequence using Dynamic Programming with Bottom-Up
Approach
Python Program to Find Longest Common Substring using Dynamic Programming with Memoization
Python Program to Find Longest Common Substring using Dynamic Programming with Bottom-Up
Approach
Python Program to Count all Paths in a Grid with Holes using Dynamic Programming with Memoization
Python Program to Count all Paths in a Grid with Holes using Dynamic Programming with Bottom-Up
Approach