Thursday, 16 November 2023
Go Beyond the Numbers: Translate Data into Insights
Python Coding November 16, 2023 Data Science, Google No comments
Decisions, Decisions: Dashboards and Reports
Python Coding November 16, 2023 Course, Data Science, Google No comments
Ask Questions to Make Data-Driven Decisions
Python Coding November 16, 2023 Course, Data Science, Google No comments
Google Data Analytics Capstone: Complete a Case Study
Python Coding November 16, 2023 Data Science, Google No comments
Foundations: Data, Data, Everywhere
Python Coding November 16, 2023 Course, Data Science, Google No comments
Google Business Intelligence Professional Certificate
Python Coding November 16, 2023 Course, Data Science, Google No comments
Foundations of Data Science
Python Coding November 16, 2023 Course, Data Science, Google No comments
Google Cybersecurity Professional Certificate
Python Coding November 16, 2023 Course, Cybersecurity, Google No comments
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
Popular Posts
-
While Excel remains ubiquitous in the business world, recent Microsoft feedback forums are full of requests to include Python as an Excel ...
-
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...
-
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...
-
Explanation try block: Python runs the code inside the try block first. print("Hello") executes normally, so it prints: Hel...
-
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...
-
100 Data Structure and Algorithm Problems to Crack Coding Interviews Unlock your potential to ace coding interviews with this comprehensiv...
-
Exploring Python Web Scraping with Coursera’s Guided Project In today’s digital era, data has become a crucial asset. From market trends t...
-
Step 1: color = 'white' This assigns the string 'white' to the variable color. Step 2: color[4] Python strings are ...
-
Learning LangChain: Building AI and LLM Applications with LangChain and LangGraph LangChain is an open-source framework designed to simplif...
-
Explanation step-by-step: Function Definition: def printArr ( arr, index ): This defines a function called printArr that takes: arr...