
Coding Computing Coach
@CodingComputing
Followers
9K
Following
9K
Media
326
Statuses
13K
Making Python simple for you, by exploring the fundamentals. Tips and explanations to become code-literate in this AI age. Building @PythonResources
Maximize your coding skills 👇
Joined May 2019
RT @CodingComputing: Combine AI-assisted coding with solid fundamentals. AI-assisted coding adds speed, and solid fundamentals make sure y….
0
1
0
Mutability concept shows up in sneaky places. .
@driscollis Answer: D. Solution: Let's go line by line. x = y = "Python".Here we see 2 assignment operations. In such a case, evaluation starts from the right-most expression. In this case that's the string, "Python". This gets assigned to variables, x and y. So, we have x and y. .
0
0
0
RT @driscollis: #Python Pop Quiz 🐍❓. What is the output of the following code?. A) Python.B) Python rocks!.C) Python rocks! Python.D) Pytho….
0
1
0
RT @CodingComputing: Good foundation paves the way to learn-by-doing. Not the other way round.
0
2
0
Class variables vs Instance variables in python.
@clcoding Answer: A. Solution: To solve this question we need to understand Class variables vs Instance variables. Class variables:.- Belong to the class.- Shared across all objects of the class.- Defined in the class body. .
0
0
0
RT @clcoding: Python Coding challenge - Day 582| What is the output of the following Python Code?.Answer with Explanation : .
0
20
0
RT @CodingComputing: @Python_Dv Answer: C. Solution: The `+` operator works differently on strings than on numbers!. `+` between strings co….
0
1
0
RT @Python_Dv: Python Question / Quiz;. What is the output of the following Python code, and why? 🤔🚀 Comment your answers below! 👇. #python….
0
6
0
Solving an if-elif maze.
@clcoding Answer: Exact. Solution: It looks complex, but it's simply a matter of checking conditions. The value of x is 5. The rest of the code is within if-block with condition (x>2). The condition is True (5>2), thus we enter the if-block. In there, we bump into another condition. .
0
0
1
RT @clcoding: What will be the output of the following Python code?. x = 5.if x > 2:. if x < 4:. print("Low"). elif x == 5:….
0
21
0
RT @CodingComputing: @svpino 1⃣ vibe coding.2⃣ vibe debugging.3⃣ vibe marketing.4⃣ vibe maintenance.5⃣ vibe profiting.6⃣ vibe retirement on….
0
2
0
RT @svpino: i dont think you understand. you vibe code a saas. you get to $50k/month. i dont know why people are still poor af when all the….
0
63
0
The most annoying quirk in python. .
@clcoding Answer: A. Solution: This is a tricky quirk of python. Let's dive in. The function func has 2 arguments, `a`, and `L` (default value [], empty list). for i in range(a):. L.append(i). this runs a loop over range(a), and appends the item to L. Finally,. .
0
0
4
RT @clcoding: Python Coding challenge - Day 579| What is the output of the following Python Code?.Answer with Explanation : .
0
14
0