Mike Driscoll (@driscollis) 's Twitter Profile
Mike Driscoll

@driscollis

$PYTHAI | Lead Developer @ThePSF #Python

ID: 19067150

linkhttps://www.blog.pythonlibrary.org/ calendar_today16-01-2009 13:57:49

41,41K Tweet

126,126K Followers

985 Following

IncrediCoders (@incredicoders) 's Twitter Profile Photo

We're launching the IncrediCoders Community on June 30! πŸ’¬ Join us: lnkd.in/gVny5FJz Daily posts, behind-the-scenes & more! #Python #pythonlearning #codingforkids

We're launching the IncrediCoders Community on June 30!

πŸ’¬ Join us: lnkd.in/gVny5FJz

Daily posts, behind-the-scenes & more! 

#Python #pythonlearning #codingforkids
Mike Driscoll (@driscollis) 's Twitter Profile Photo

#Python Pop Quiz πŸβ“ What is the output of the following code? A) Python B) Python rocks! C) Python rocks! Python D) Pythonrocks! Python

#Python Pop Quiz πŸβ“

What is the output of the following code?

A) Python
B) Python rocks!
C) Python rocks! Python
D) Pythonrocks! Python
Mike Driscoll (@driscollis) 's Twitter Profile Photo

#Python Pro Tip 🐍🎩 Classes allow you to modify the representation of an object by editing its `__repr__()` method. When you print an object without the __repr__() being modified, you will get the memory address of the object back. Override __repr__ if you want more info!

#Python Pro Tip 🐍🎩

Classes allow you to modify the representation of an object by editing its `__repr__()` method.

When you print an object without the __repr__() being modified, you will get the memory address of the object back.

Override __repr__ if you want more info!
Mike Driscoll (@driscollis) 's Twitter Profile Photo

#Python Pop Quiz πŸβ“ What is the output of the following code? A) ['p', 'y', 't', 'h', 'o', 'n', '!'] B) SyntaxError C) IndexError D) ['!', 'p', 'y', 't', 'h', 'o', 'n']

#Python Pop Quiz πŸβ“

What is the output of the following code?

A) ['p', 'y', 't', 'h', 'o', 'n', '!']
B) SyntaxError
C) IndexError
D) ['!', 'p', 'y', 't', 'h', 'o', 'n']
Santiago (@svpino) 's Twitter Profile Photo

Vibe-coding is the new crypto gold rush: β€’ Everyone's jumping in because it's new and shiny β€’ Lots of hype, little substance β€’ Looks impressive on the surface, but breaks under real-world use β€’ Easy to get started. Hard to get anywhere meaningful with it β€’ Real utility

Mike Driscoll (@driscollis) 's Twitter Profile Photo

Python 101 - There are two ways to access values in #Python dictionaries 🐍 - Use dictionary access via square braces 🐍 - Use the dictionary's get() method If the key does not exist, the first method will raise a KeyError. You can use get() to return a default instead

Python 101 - There are two ways to access values in #Python dictionaries

🐍 - Use dictionary access via square braces
🐍 - Use the dictionary's get() method

If the key does not exist, the first method will raise a KeyError. You can use get() to return a default instead