Python


01

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

02

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

Read More
03

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

Read More
04

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

Read More
05

Write a python program to find Fibonacci series up to given number.

Read More
06

Write a Python program using functions to find the value of nPr and nCr without using inbuilt factorial() function.

Read More
07

Write Pythonic code to solve the quadratic equation ax**2 + bx + c = 0 by getting input for coefficients from the user.

Read More
08

Write 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 More
09

Write a python program to create a table of given number using function.

Read More
10

Write a Python program to accept a filename from the user print the extension of that. Example :- Enter filename: hello.java output: java

Read More