Friday, 24 November 2023
Thursday, 23 November 2023
Python Coding challenge - Day 75 | What is the output of the following Python code?
Python Coding November 23, 2023 Python Coding Challenge No comments
.png)
num = [10, 20, 30, 40, 50] num[2:4] = [ ] print(num)
Python Coding November 23, 2023 Python No comments
Deep Learning Specialization
Python Coding November 23, 2023 Deep Learning No comments
How will you create an empty list, empty tuple, empty set and empty dictionary?
Python Coding November 23, 2023 Python No comments
1. print(6 // 2) 2. print(3 % -2) 3. print(-2 % -4) 4. print(17 / 4) 5. print(-5 // -3)
Python Coding November 23, 2023 Python No comments
a = [1, 2, 3, 4] b = [1, 2, 5] print(a < b)
Python Coding November 23, 2023 Python No comments
Wednesday, 22 November 2023
Python Coding challenge - Day 74 | What is the output of the following Python code?
Python Coding November 22, 2023 Python No comments
.png)
10 FREE coding courses from University of Michigan
Python Coding November 22, 2023 Course No comments

Advanced Portfolio Construction and Analysis with Python
Python Coding November 22, 2023 Python No comments
Inferential Statistical Analysis with Python
Python Coding November 22, 2023 Course, Python No comments
s = { } t = {1, 4, 5, 2, 3} print(type(s), type(t))
Python Coding November 22, 2023 Python No comments
s1 = {10, 20, 30, 40, 50} s2 = {10, 20, 30, 40, 50} s3 = {*s1, *s2} print(s3) Output {40, 10, 50, 20, 30}
Python Coding November 22, 2023 Python No comments
Tuesday, 21 November 2023
Python Coding challenge - Day 73 | What is the output of the following Python code?
Python Coding November 21, 2023 Python No comments
From Excel to Power BI (Free Course)
Python Coding November 21, 2023 Course, Data Science No comments
Meta Front-End Developer Professional Certificate
Python Coding November 21, 2023 Course, Meta No comments
Introduction to Statistics (Free Course)
Python Coding November 21, 2023 Course, Data Science No comments
IBM Full Stack Software Developer Professional Certificate
Python Coding November 21, 2023 Course, IBM No comments
Meta Back-End Developer Professional Certificate
Python Coding November 21, 2023 Course, Meta No comments
Monday, 20 November 2023
MITx: Machine Learning with Python: from Linear Models to Deep Learning (Free Course)
Python Coding November 20, 2023 Course, Python No comments
IBM: Machine Learning with Python: A Practical Introduction (Free Course)
Python Coding November 20, 2023 Course, Python No comments
Saturday, 18 November 2023
Write a program to generate all Pythagorean Triplets with side length less than or equal to 50.
Python Coding November 18, 2023 Python No comments
Rewrite the following program using for loop. lst = ['desert', 'dessert', 'to', 'too', 'lose', 'loose'] s = 'Mumbai' i = 0 while i < len(lst) : if i > 3 : break else : print(i, lst[i], s[i]) i += 1
Python Coding November 18, 2023 Python No comments
Write a program to print first 25 odd numbers using range( ).
Python Coding November 18, 2023 No comments
a. range(5) b. range(1, 10, 3) c. range(10, 1, -2) d. range(1, 5) e. range(-2)
Python Coding November 18, 2023 Python No comments
Can a do-while loop be used to repeat a set of statements in Python?
Python Coding November 18, 2023 Python No comments
Can a while/for loop be used in an if/else and vice versa in Python?
Python Coding November 18, 2023 Python No comments
Can a while loop be nested within a for loop and vice versa?
Python Coding November 18, 2023 Python No comments
Can range( ) function be used to generate numbers from 0.1 to 1.0 in steps of 0.1?
Python Coding November 18, 2023 Python No comments
If a = 10, b = 12, c = 0, find the values of the following expressions: a != 6 and b > 5 a == 9 or b < 3 not ( a < 10 ) not ( a > 5 and c ) 5 and c != 8 or c
Python Coding November 18, 2023 Python No comments
Hands-On Data Analysis with NumPy and pandas (Free PDF)
Python Coding November 18, 2023 Books, Python No comments

Friday, 17 November 2023
a = 10 b = 60 if a and b > 20 : print('Hello') else : print('Hi')
Python Coding November 17, 2023 Python No comments
a = 10 a = not not a print(a)
Python Coding November 17, 2023 Python No comments
Rewrite the following code in 1 line
Python Coding November 17, 2023 Python No comments
msg = 'Aeroplane' ch = msg[-0] print(ch)
Python Coding November 17, 2023 Python No comments
Thursday, 16 November 2023
Process Data from Dirty to Clean
Python Coding November 16, 2023 Course, Data Science, Google No comments
Analyze Data to Answer Questions
Python Coding November 16, 2023 Course, Data Science, Google No comments
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
Popular Posts
-
100 Data Structure and Algorithm Problems to Crack Coding Interviews Unlock your potential to ace coding interviews with this comprehensiv...
-
Let me explain this code: num = 1 while num < 6: print(num) This code has a few issues that would cause it to run indefinitely (inf...
-
Explanation: num = 6 sets num to 6. decrement(num) calls the function, but num is passed by value (since integers are immutable in Pyt...
-
Introduction to Data Science in Python: Course Review and Insights Python has become one of the most powerful and popular programming lang...
-
Let's break down this Python for loop: for i in range ( 0 , - 2 , - 2 ): print(i) range(start, stop, step) parameters: start =...
-
Storytelling with Data: A Data Visualization Guide for Business Professionals Don't simply show your data - tell a story with it! St...
-
Explanation step-by-step: Function Definition: def printArr ( arr, index ): This defines a function called printArr that takes: arr...
-
Let's break down this Python code step by step: import array as arr This imports Python's built-in array module and gives it t...
-
While Excel remains ubiquitous in the business world, recent Microsoft feedback forums are full of requests to include Python as an Excel ...
-
Introduction to Scripting in Python Specialization Python is one of the most versatile and beginner-friendly programming languages, making...