1. Write a Python program to generate 26 text files named A.txt, B.txt, and so on up to Z.txt 2. Write a Python program to create a file where all letters of English alphabet are listed by specified number of ...
SIKSHAPATH Latest Questions
1. Write a Python class named Student with two attributes student_id, student_name. Add a new attribute student_class and display the entire attribute and their values of the said class. Now remove the student_name attribute and display the entire attribute with ...
1. Python program to implement linear search. 2. Python program to implement bubble sort. 3. Python program to implement binary search without recursion. 4. Python program to implement selection sort.
Write a Python program to find the highest 3 values of corresponding keys in a dictionary.
Write a Python program to combine two dictionary adding values for common keys. d1 = {‘a’: 100, ‘b’: 200, ‘c’:300},d2 = {‘a’: 300, ‘b’: 200, ‘d’:400}
WAP to add all the numbers between 1 to 50 that are divisible by 2,3 and 5 in python.