The document is a Python programming showcase submitted by Wasik Khurshid for the 4th semester. It includes an index table of various programs related to lists, tuples, and loops in Python, along with detailed descriptions and source code for each program. The document is intended for submission to Dr. Manmeet Singh.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
4K views2 pages
From Docx Import Document - Py
The document is a Python programming showcase submitted by Wasik Khurshid for the 4th semester. It includes an index table of various programs related to lists, tuples, and loops in Python, along with detailed descriptions and source code for each program. The document is intended for submission to Dr. Manmeet Singh.
rows = [ ('06', 'Write a program to create, append, and remove lists in Python.', '19/02/2025'), ('07', 'Write a program to demonstrate working with tuples in Python.', '19/02/2025'), ('08', 'Write a program to demonstrate working with dictionaries in Python.', '19/02/2025'), ('09', 'Write a program to check whether a number is even or odd using `if` condition.', '19/02/2025'), ('10', 'Write a program to demonstrate `for` loop.', '19/02/2025'), ('11', 'Write a program to demonstrate `while` loop.', '19/02/2025'), ('12', 'Write a program to display prime numbers between 50 to 60.', '19/02/2025'), ]
programs = [ { 'title': 'Program 06: Create, Append, and Remove Lists', 'description': 'This program demonstrates how to create, modify, and manipulate lists in Python.', 'code': ''' # Creating a list with fruit names fruits = ["Apple", "Orange", "Banana"] print("Original List:", fruits)