CodingComputing Profile Banner
Coding Computing Coach Profile
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
Don't wanna be here? Send us removal request.
@CodingComputing
Coding Computing Coach
11 months
🚨 Python Testing Series 🚨. Employ testing to gamify your coding. Learn how to test code using pytest. Build a Cash Dispenser project in Test Driven style. Ongoing series of posts, see README at:.
0
1
20
@CodingComputing
Coding Computing Coach
3 hours
RT @CodingComputing: Combine AI-assisted coding with solid fundamentals. AI-assisted coding adds speed, and solid fundamentals make sure y….
0
1
0
@CodingComputing
Coding Computing Coach
14 hours
Combine AI-assisted coding with solid fundamentals. AI-assisted coding adds speed, and solid fundamentals make sure you're going in the right direction.
0
1
1
@CodingComputing
Coding Computing Coach
22 hours
Mutability concept shows up in sneaky places. .
@CodingComputing
Coding Computing Coach
22 hours
@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
@CodingComputing
Coding Computing Coach
22 hours
the magic of vibe-building.
@tadaspetra
Tadas Petra
2 days
Tweet media one
0
0
0
@CodingComputing
Coding Computing Coach
22 hours
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
@CodingComputing
Coding Computing Coach
1 day
RT @CodingComputing: Good foundation paves the way to learn-by-doing. Not the other way round.
0
2
0
@CodingComputing
Coding Computing Coach
2 days
Good foundation paves the way to learn-by-doing. Not the other way round.
0
2
5
@CodingComputing
Coding Computing Coach
2 days
Class variables vs Instance variables in python.
@CodingComputing
Coding Computing Coach
2 days
@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
@CodingComputing
Coding Computing Coach
2 days
RT @clcoding: Python Coding challenge - Day 582| What is the output of the following Python Code?.Answer with Explanation : .
0
20
0
@CodingComputing
Coding Computing Coach
3 days
To learn to code is to learn to think. To break down and solve problems. THAT is the real irreplaceable skill. Learn it or fall behind.
0
0
2
@CodingComputing
Coding Computing Coach
3 days
RT @CodingComputing: @Python_Dv Answer: C. Solution: The `+` operator works differently on strings than on numbers!. `+` between strings co….
0
1
0
@CodingComputing
Coding Computing Coach
3 days
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
@CodingComputing
Coding Computing Coach
3 days
Solving an if-elif maze.
@CodingComputing
Coding Computing Coach
3 days
@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
@CodingComputing
Coding Computing Coach
3 days
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
@CodingComputing
Coding Computing Coach
3 days
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
@CodingComputing
Coding Computing Coach
3 days
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
@CodingComputing
Coding Computing Coach
3 days
The most annoying quirk in python. .
@CodingComputing
Coding Computing Coach
3 days
@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
@CodingComputing
Coding Computing Coach
3 days
RT @clcoding: Python Coding challenge - Day 579| What is the output of the following Python Code?.Answer with Explanation : .
0
14
0
@CodingComputing
Coding Computing Coach
4 days
Understanding logic > Memorizing syntax. Memorizing syntax is mundane. Logic is where you shine.
0
1
6
@CodingComputing
Coding Computing Coach
4 days
RT @CodingComputing: Python stays out of the way and lets you covert thoughts into code.
0
1
0