Thursday, 16 November 2023
Free Courses from Cisco
Python Coding November 16, 2023 Course No comments

Machine Learning with Apache Spark (Free Course)
Python Coding November 16, 2023 Course No comments
Data Science Coding Challenge: Loan Default Prediction (Free Project)
Python Coding November 16, 2023 Projects, Python No comments
Machine Learning with Python
Python Coding November 16, 2023 Course, Machine Learning No comments
Wednesday, 15 November 2023
Python Coding challenge - Day 70 | What is the output of the following Python code?
Python Coding November 15, 2023 Python No comments
.png)
Tuesday, 14 November 2023
result = max(-0.0, 0.0) print(result)
Python Coding November 14, 2023 Python No comments
round(3 / 2) round(5 / 2)
Python Coding November 14, 2023 Python No comments
The most difficult Python questions:
Python Coding November 14, 2023 Python No comments
Python: Lists vs. Tuples vs. Sets vs. Dictionaries
Python Coding November 14, 2023 Python No comments
IBM Full Stack Software Developer Professional Certificate
Python Coding November 14, 2023 Course, Software No comments
Object-Oriented Python: Inheritance and Encapsulation
Python Coding November 14, 2023 Course, Python No comments
Python Coding challenge - Day 69 | What is the output of the following Python code?
Python Coding November 14, 2023 Python No comments
.png)
Monday, 13 November 2023
Python Coding challenge - Day 68 | What is the output of the following Python code?
Python Coding November 13, 2023 Python No comments
.png)
Do you know the reason ?
Python Coding November 13, 2023 Python No comments

A simple Python code for checking whether a given number is prime or not
Python Coding November 13, 2023 Python No comments
Sunday, 12 November 2023
Introduction to Python
Python Coding November 12, 2023 Projects, Python No comments
Understanding Basic SQL Syntax
Python Coding November 12, 2023 Projects, SQL No comments
Python Coding challenge - Day 67 | What is the output of the following Python code?
Python Coding November 12, 2023 Python No comments
.png)
Successful Algorithmic Trading halls-moore (PDF)
Python Coding November 12, 2023 Books No comments
Understanding Deep Learning (PDF Book)
Python Coding November 12, 2023 Books No comments

Understanding Machine Learning: From Theory to Algorithms (PDF Book)
Python Coding November 12, 2023 Books No comments

Saturday, 11 November 2023
Happy Diwali using Python Turtle
Python Coding November 11, 2023 Python No comments
Mastering Data Analysis with Pandas
Python Coding November 11, 2023 Projects No comments
Python Coding challenge - Day 66 | What is the output of the following Python code?
Python Coding November 11, 2023 Python No comments
.png)
Hands-On Machine Learning with Scikit-Learn, Keras, and TensorFlow: Concepts, Tools, and Techniques to Build Intelligent Systems (Free PDF)
Python Coding November 11, 2023 Books No comments

Computers, Waves, Simulations: A Practical Introduction to Numerical Methods using Python (Free Course)
Python Coding November 11, 2023 Course, Python No comments
20 extremely useful single-line Python codes
Python Coding November 11, 2023 Python No comments

Popular Posts
-
While Excel remains ubiquitous in the business world, recent Microsoft feedback forums are full of requests to include Python as an Excel ...
-
Explanation try block: Python runs the code inside the try block first. print("Hello") executes normally, so it prints: Hel...
-
Line-by-line explanation: prod = getProd(4,5,2) This line is trying to call a function named getProd with arguments 4, 5, and 2. How...
-
Understanding the code: 1. range(0, 6, 4) This means: Start from 0, go up to (but not including) 6, and increment by 4. So, it genera...
-
This is a recursive function . It calculates the sum of all numbers from 1 to num. How does recursion work here? Let's see how sum(5...
-
Exploring Python Web Scraping with Coursera’s Guided Project In today’s digital era, data has become a crucial asset. From market trends t...
-
What happens: num = 6 A variable num is created and assigned the value 6. decrement(num) This calls the decrement function and pass...
-
Learning LangChain: Building AI and LLM Applications with LangChain and LangGraph LangChain is an open-source framework designed to simplif...
-
Step-by-step Explanation: playerScores = dict() Creates an empty dictionary named playerScores. Adding player scores: playerSc...
-
What’s happening here? fruits is a list of 5 string items. [ 'Python' , 'Py' , 'Anaconda' , 'CPython' , ...