Category: programs in python
Python Download File from URL | 4 Methods
Yogesh Kumar January 10, 2023
There are many methods and libraries to download file from URL using Python and we will try to cover the most used and reliable methods….
Posted in allcategorites general-python gui python projects programs in python python projects python simple programs python-short-tutorial
Python Programming Examples | Fundamental Programs in Python
Ayush Purawr January 6, 2023
Python is a popular, widely-used programming language and easy to learn for beginners because of its short syntax and readability, and learning to code in…
Python | Delete object of a class
Harry January 5, 2023
Output: Rakesh 50000 Amit 60000 Rakesh 50000 Traceback (most recent call last): File “C:\CopyAssignment.py”, line 14, in <module> print(obj2.name, obj2.salary) NameError: name ‘obj2’ is not…
Python | Create a class that takes 2 parameters, print both parameters
Harry January 5, 2023
Output: Rakesh 50000Amit 60000
Python | Find the maximum element in a list using lambda and reduce()
Harry January 5, 2023
Output: 40
Python | filter numbers(that are not divisible by 3 and 4) from a list using lambda and filter()
Harry January 5, 2023
Output: [12, 24, 36]
Python | lambda function that returns the maximum of 2 numbers
Harry January 5, 2023
Output: Enter numbers: 1 2 2

