Advertisement Β· 728 Γ— 90

Posts by PythonLover24

Light yellow background with the text "Happy 25th Anniversary to the PSF!" at the top, underneath is a birthday cake emoji, underneath that the text says 'Our thanks to the Python community for making it all possible <3" and at the bottom is the Python Software Foundation logo.

Light yellow background with the text "Happy 25th Anniversary to the PSF!" at the top, underneath is a birthday cake emoji, underneath that the text says 'Our thanks to the Python community for making it all possible <3" and at the bottom is the Python Software Foundation logo.

Happy 25th anniversary to the PSF! πŸŽ‰ That's a quarter century of the PSF supporting #Python and its community to grow, build, & change the world. Thank you to our community for making it all possible, we're grateful to be in community with each and every one of you- for the next 25 years & beyond!

1 month ago 50 12 0 0

review-prompts

AI-assisted code review prompts for Linux kernel and systemd development. Works with Claude Code and other AI tools.

https://github.com/masoncl/review-prompts

1 month ago 1 1 0 0
Preview
Python Software Foundation News

@anthropic.com is investing $1.5 million in the PSF, focused on security. These funds will make an enormous impact on the PSF and the security of millions of #Python and @pypi.org users. Please join us in thanking Anthropic for this landmark gift!

Read more on our blog:

3 months ago 144 31 5 6
Post image

Learning Linux has been harder than expected. I've broken things, Googled the same commands repeatedly, spent 20min debugging (forgot chmod +x ).

This cheatsheet = things I wish I knew on day one. Hope it helps someone avoid my beginner mistakes. #Linux

3 months ago 0 0 0 0

Refactoring old repos for the next month. #Python

3 months ago 0 0 0 0

Preparing for my PCAP. Today's challenge:

Octal & Hexadecimal conversion. This has been the most humbling experience in my programming journey. Every programmer wrestles with something that felt impossible at first. This has been mine unfortunately. Sticking with the course. I know it will pay off

3 months ago 1 0 0 0

Today I automated my first backup script using cron jobs. Small win but i'm happy these Linux concepts are finally starting to click!

#Linux

3 months ago 0 0 0 0
Advertisement

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

5 months ago 0 0 0 0

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.

5 months ago 0 0 0 0

🎭 Python humor of the day 🐍

Why did the function return early?

Because it had too many arguments .

please don't block me πŸ˜‚

7 months ago 0 0 0 0

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

8 months ago 0 0 0 0
Post image

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

9 months ago 0 0 0 0
Post image

*Updated*
I went back in to clean up the code. I believe this is more readable.

1 year ago 0 0 0 0

This weeks lab was fun and challenging. One thing I did notice in my sample code was I forget to use the 'round' function. 3/3

πŸ’¬ Fellow coders: How are you applying conditional logic in your learning journey?

πŸ’¬ Would you have solved the scenario differently?

1 year ago 0 0 1 0
Post image

πŸ’‘ What I Learned 🐍:

The if-else statement allows your code to make decisions based on certain conditions. Here's how my progress is coming with this weeks lab: 2/3
#Python #juniorcoder #conditionalstatements

1 year ago 0 0 1 0
Post image

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

1 year ago 0 0 1 0

Learning about conditional 'if-else' statements this week. Sharing some Labs i'm working on shortly.

1 year ago 0 0 0 0
Advertisement

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

1 year ago 0 0 0 0

🧠 I remember having a few β€œaha!” moments with conditionals. Curious how others learned to master them. 1/2

1 year ago 0 0 0 0
Post image

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

1 year ago 0 0 0 0

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

1 year ago 0 0 0 0

πŸ” 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

1 year ago 0 0 0 0
Preview
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!

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!

1 year ago 22 5 1 0

Python Hub Weekly Digest for 2025-03-30

https://pythonhub.dev/digest/2025-03-30/

1 year ago 4 1 0 0

I need study tips . I have A.D.D really bad 😭

1 year ago 0 0 0 0

Best you can do during tuff periods is chew up the meat and spit out the bones.

1 year ago 0 0 0 0
Advertisement
Post image

Python coders:

Needing assistance with this lab. Can anyone explain?

1 year ago 0 0 0 0

πŸ’‘ 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.

2 years ago 26 4 0 0

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.

blog.jetbrains.com/pycharm/2025/01/anomaly-...

1 year ago 7 2 0 0

Can any of you recommend any good youtube channels for Python learning

1 year ago 0 0 0 0