Joseph Loves Python

Hey there, I'm Joseph and as you might have already guessed it, well, I LOVE Python! This is why I made it my mission to make you also fall in love with Python through my videos that go through some of the best features, tips, tricks and tutorials in Python!

On my channel you'll find two types of content that will be published:

* Short-Form Videos: That aim to rapidly showcase bite-sized (sometime those bites can be quite big!) tips and tricks in Python in 60 seconds or less ⏰
* Long-Form Videos: That aim to dive deeper into core concepts that will make you REALLY understand how features actually function and rapidly level up your Python level ⬆⬆

I hope you'll benefit from all of this content, and eventually love Python just like I do!

Happy Pythoning!


Joseph Loves Python

a = [1, 2, 3] * 2
print(a) # Vote for answer!

1 year ago | [YT] | 7

Joseph Loves Python

a = [5, 2, 9, 1]
sorted(a)
print(a)

1 year ago | [YT] | 2

Joseph Loves Python

try:
result = 10 / 0
except ZeroDivisionError:
result = "error"
finally:
result = "done"



print(result)

1 year ago | [YT] | 1

Joseph Loves Python

text = "Python"
print(text[-1::-1])

1 year ago | [YT] | 3

Joseph Loves Python

Hello everyone! Now that the channel is getting more traction, I just launched the next video voting poll perk on my Patreon 🎉
Each month, it will be up to my patrons to decide which video will be uploaded! If you want to take part in these decisions, starting with this April poll (with very few patrons, so much more voting power for you!) you can support me on Patreon and find all the details here: www.patreon.com/JosephLovesPython

Happy Pythoning 🐍

1 year ago (edited) | [YT] | 6

Joseph Loves Python

As the year wraps up, I want to truly thank you for your support! I already passed the 500 subscribers bar in less than 3 months! And it's all because you gave a new channel a chance, so thank you!

Hope you're having some great holidays and wishing you all a happy new year! 🎉

1 year ago | [YT] | 11

Joseph Loves Python

Already passed the 100 subscribers milestone after 1 month of launching the channel! BIG THANKS for every single one of you for supporting me in this journey!!

2 years ago | [YT] | 1

Joseph Loves Python

What Python module do you use when working with files and directories?

If you're still using the os module, then you definitely have to watch my latest short! youtube.com/shorts/QRLfR0MEei...

2 years ago | [YT] | 2