Author: Harry
Simple Code to compare Speed of Python, Java, and C++?
Introduction There’s often a lot of debate about the speed of different programming languages, with many assuming that C++ is always the fastest and Python…
Falling Stars Animation on Python.Hub October 2024
Hello Python enthusiasts! Check out the cool animation below, featured on our Instagram page, python.hub. You can view the latest reel, posted on October 8,…
Python Turtle Star
Code to draw Python Turtle Star Output: Important Python turtle Commands Below are some simple turtle commands that are important and used to create graphics…
Hostel Management System Project in Python
In this article, we will build a Hostel Management System Project in Python with Graphical User Interface and database integration. We will use the MongoDB…
Python | Delete object of a class
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
Output: Rakesh 50000Amit 60000
Python | Create a class, create an object of the class, access, and print property value
Output: 10
Python | Find the maximum element in a list using lambda and reduce()
Output: 40
Python | filter numbers(that are not divisible by 3 and 4) from a list using lambda and filter()
Output: [12, 24, 36]
Python | lambda function that returns the maximum of 2 numbers
Output: Enter numbers: 1 2 2
Python | Convert all strings of a list to uppercase using lambda
Output: [‘ONE’, ‘TWO’, ‘THREE’]
Python | Reverse and convert a string to uppercase using lambda
Output: TNEMNGISSAYPOC
Python | Calculator using lambda
Output: PS C:\CopyAssignment.py” Enter 1. Addition 2. Subtraction 3. Multiplication 4. Division 5. Exit Enter choice: ds Enter integer values only! Enter 1. Addition 2….