Python
Write a program in python to perfrom following function on Singly
Linked List
1) Create Singly Linked List
2) Add node
3)Display
4)Delete node
5)Find data in SLL
Read More
Write a program in python to perfrom following function on Circular
Doubly Linked List
1) Create Circular Doubly Linked List
2) Add node
3)Display
4)Delete node
5)Find data in CDLL
Write a program in python to perfrom following function on Doubly
Linked List
1) Create Doubly Linked List
2) Add node
3)Display
4)Delete node
5)Find data in DLL
Write a program in python to perfrom following function on Circular
Singly Linked List
1) Create Circular Singly Linked List
2) Add node
3)Display
4)Delete node
5)Find data in CSLL
Write a python program to find Fibonacci series up to given number.
Read MoreWrite a Python program using functions to find the value of nPr and nCr without using inbuilt factorial() function.
Read MoreWrite Pythonic code to solve the quadratic equation ax**2 + bx + c = 0 by getting input for coefficients from the user.
Read MoreWrite a program that repeatedly prompts a user for integer numbers until the user enters 'done'. Once 'done' is entered, print out the largest and smallest of the numbers.
Read MoreWrite a python program to create a table of given number using function.
Read MoreWrite a Python program to accept a filename from the user print the extension of that. Example :- Enter filename: hello.java output: java
Read More