PythonLover24
@beginnercoder24.bsky.social
📚 Lifelong Learner | 🤝 Connector | 💡 Knowledge Sharer | 🐍 Python in Progress
Passionate about continuous growth through education, collaboration, & innovation. This space is dedicated to sharing new ideas, and connecting with like-minded professionals.
Passionate about continuous growth through education, collaboration, & innovation. This space is dedicated to sharing new ideas, and connecting with like-minded professionals.
Pinned
Hi Sky! Any Python SMEs that don't mind assisting a beginner coder feel free to add/dm me :)
Today's win: Finally starting to under how enumerate() works.
while True:
print("Progress isn't always visible, but it is always happening.")
"Simple is better than complex."
#python #importthis
while True:
print("Progress isn't always visible, but it is always happening.")
"Simple is better than complex."
#python #importthis
October 23, 2025 at 4:41 AM
Today's win: Finally starting to under how enumerate() works.
while True:
print("Progress isn't always visible, but it is always happening.")
"Simple is better than complex."
#python #importthis
while True:
print("Progress isn't always visible, but it is always happening.")
"Simple is better than complex."
#python #importthis
Debugging taught me more than any youtube tutorial ever could. I've been working on a personal project for 3 weeks now.
Took a step back, reread the code, and realized: I was using the wrong variable. One word change and the issue was resolved.
Took a step back, reread the code, and realized: I was using the wrong variable. One word change and the issue was resolved.
October 23, 2025 at 4:25 AM
Debugging taught me more than any youtube tutorial ever could. I've been working on a personal project for 3 weeks now.
Took a step back, reread the code, and realized: I was using the wrong variable. One word change and the issue was resolved.
Took a step back, reread the code, and realized: I was using the wrong variable. One word change and the issue was resolved.
🎭 Python humor of the day 🐍
Why did the function return early?
Because it had too many arguments .
please don't block me 😂
Why did the function return early?
Because it had too many arguments .
please don't block me 😂
September 2, 2025 at 7:55 PM
🎭 Python humor of the day 🐍
Why did the function return early?
Because it had too many arguments .
please don't block me 😂
Why did the function return early?
Because it had too many arguments .
please don't block me 😂
Learning Bitwise has been extremely challenging but i think i have the basics down finally. If you're struggling with bitwise stuff too keep pushing it gets easier and it's totally worth it! #Python #Programmer
July 22, 2025 at 2:14 AM
Learning Bitwise has been extremely challenging but i think i have the basics down finally. If you're struggling with bitwise stuff too keep pushing it gets easier and it's totally worth it! #Python #Programmer
Take a look at this code in Python. What do you think the output will be?
A. You can vote!
B. You're too young to vote.
C. Syntax error
A. You can vote!
B. You're too young to vote.
C. Syntax error
July 12, 2025 at 11:53 PM
Take a look at this code in Python. What do you think the output will be?
A. You can vote!
B. You're too young to vote.
C. Syntax error
A. You can vote!
B. You're too young to vote.
C. Syntax error
As part of my journey in learning Python over the past 8 months, I’ve been diving into control flow structures—and this week, I focused on mastering the if-else statement.
Check out the lab I worked on this week! 1/3
Check out the lab I worked on this week! 1/3
April 10, 2025 at 3:24 PM
As part of my journey in learning Python over the past 8 months, I’ve been diving into control flow structures—and this week, I focused on mastering the if-else statement.
Check out the lab I worked on this week! 1/3
Check out the lab I worked on this week! 1/3
Learning about conditional 'if-else' statements this week. Sharing some Labs i'm working on shortly.
April 10, 2025 at 3:15 PM
Learning about conditional 'if-else' statements this week. Sharing some Labs i'm working on shortly.
What will this Python 🐍 code print?
x = 7
if x < 5:
print("Low")
elif x < 10:
print("Medium")
else:
print("High")
Feel free to leave your answers in the comments :) 2/2
x = 7
if x < 5:
print("Low")
elif x < 10:
print("Medium")
else:
print("High")
Feel free to leave your answers in the comments :) 2/2
April 8, 2025 at 1:41 PM
What will this Python 🐍 code print?
x = 7
if x < 5:
print("Low")
elif x < 10:
print("Medium")
else:
print("High")
Feel free to leave your answers in the comments :) 2/2
x = 7
if x < 5:
print("Low")
elif x < 10:
print("Medium")
else:
print("High")
Feel free to leave your answers in the comments :) 2/2
🧠 I remember having a few “aha!” moments with conditionals. Curious how others learned to master them. 1/2
April 8, 2025 at 1:39 PM
🧠 I remember having a few “aha!” moments with conditionals. Curious how others learned to master them. 1/2
Take the image below for example :
As you can see, `not` can be used to flip comparisons, expressions, and more, making it an essential part of your Python toolbox! ⚙️
#Python #LearningToCode #BooleanLogic #Programming #TechJourney #DataScience #codecademy
As you can see, `not` can be used to flip comparisons, expressions, and more, making it an essential part of your Python toolbox! ⚙️
#Python #LearningToCode #BooleanLogic #Programming #TechJourney #DataScience #codecademy
April 5, 2025 at 8:31 AM
Take the image below for example :
As you can see, `not` can be used to flip comparisons, expressions, and more, making it an essential part of your Python toolbox! ⚙️
#Python #LearningToCode #BooleanLogic #Programming #TechJourney #DataScience #codecademy
As you can see, `not` can be used to flip comparisons, expressions, and more, making it an essential part of your Python toolbox! ⚙️
#Python #LearningToCode #BooleanLogic #Programming #TechJourney #DataScience #codecademy
In Python, `not` is a logical operator that flips the value of a Boolean expression. It’s like a switch — if something is **True**, applying `not` will make it **False**, & vice versa. It’s incredibly useful when you need to evaluate the inverse of a condition. 2/3
#Python #BooleanLogic
#Python #BooleanLogic
April 5, 2025 at 8:30 AM
In Python, `not` is a logical operator that flips the value of a Boolean expression. It’s like a switch — if something is **True**, applying `not` will make it **False**, & vice versa. It’s incredibly useful when you need to evaluate the inverse of a condition. 2/3
#Python #BooleanLogic
#Python #BooleanLogic
🔍 Exploring Python's Boolean `not` Operator 🔍
Today, I dove deeper into Python and discovered the power of the **`not`** operator! 🐍 1/3
#Python #LearningToCode #BooleanLogic #Programming #TechJourney #DataScience #codecademy
Today, I dove deeper into Python and discovered the power of the **`not`** operator! 🐍 1/3
#Python #LearningToCode #BooleanLogic #Programming #TechJourney #DataScience #codecademy
April 5, 2025 at 8:28 AM
🔍 Exploring Python's Boolean `not` Operator 🔍
Today, I dove deeper into Python and discovered the power of the **`not`** operator! 🐍 1/3
#Python #LearningToCode #BooleanLogic #Programming #TechJourney #DataScience #codecademy
Today, I dove deeper into Python and discovered the power of the **`not`** operator! 🐍 1/3
#Python #LearningToCode #BooleanLogic #Programming #TechJourney #DataScience #codecademy
Reposted by PythonLover24
Grab the #Python From Beginner to Advanced Humble Bundle by Packt! Whether you're just starting out or diving into advanced topics, this bundle has something for everyone 🐍📚 Get a great deal & support the PSF– only 3 days left, so grab the bundle today!
Humble Tech Book Bundle: Python: From Beginner to Advanced by Packt
Learn beginner and advanced Python skills with this library of coding and programming courses by Packt. Pay what you want & support charity!
www.humblebundle.com
March 28, 2025 at 7:47 PM
Grab the #Python From Beginner to Advanced Humble Bundle by Packt! Whether you're just starting out or diving into advanced topics, this bundle has something for everyone 🐍📚 Get a great deal & support the PSF– only 3 days left, so grab the bundle today!
Reposted by PythonLover24
March 30, 2025 at 6:15 PM
I need study tips . I have A.D.D really bad 😭
April 3, 2025 at 11:02 PM
I need study tips . I have A.D.D really bad 😭
Best you can do during tuff periods is chew up the meat and spit out the bones.
April 3, 2025 at 11:01 PM
Best you can do during tuff periods is chew up the meat and spit out the bones.
Python coders:
Needing assistance with this lab. Can anyone explain?
Needing assistance with this lab. Can anyone explain?
February 1, 2025 at 12:15 AM
Python coders:
Needing assistance with this lab. Can anyone explain?
Needing assistance with this lab. Can anyone explain?
Reposted by PythonLover24
💡 Do you know Python’s any() and all() functions? These are powerful tools for evaluating iterables! any() returns True if at least one element of an iterable is true. all() returns True only if all elements of an iterable are true.
October 4, 2023 at 8:09 PM
💡 Do you know Python’s any() and all() functions? These are powerful tools for evaluating iterables! any() returns True if at least one element of an iterable is true. all() returns True only if all elements of an iterable are true.
Reposted by PythonLover24
Anomaly Detection in Time Series
Learn how to detect anomalies in time series data using different detection models. Explore our step-by-step guide with code examples for various applications.
https://blog.jetbrains.com/pycharm/2025/01/anomaly-detection-in-time-series/
Learn how to detect anomalies in time series data using different detection models. Explore our step-by-step guide with code examples for various applications.
https://blog.jetbrains.com/pycharm/2025/01/anomaly-detection-in-time-series/
January 30, 2025 at 7:15 PM
Anomaly Detection in Time Series
Learn how to detect anomalies in time series data using different detection models. Explore our step-by-step guide with code examples for various applications.
https://blog.jetbrains.com/pycharm/2025/01/anomaly-detection-in-time-series/
Learn how to detect anomalies in time series data using different detection models. Explore our step-by-step guide with code examples for various applications.
https://blog.jetbrains.com/pycharm/2025/01/anomaly-detection-in-time-series/
Can any of you recommend any good youtube channels for Python learning
January 24, 2025 at 12:12 AM
Can any of you recommend any good youtube channels for Python learning
Hi Sky! Any Python SMEs that don't mind assisting a beginner coder feel free to add/dm me :)
January 23, 2025 at 10:41 PM
Hi Sky! Any Python SMEs that don't mind assisting a beginner coder feel free to add/dm me :)