Aaron Hall β™‘'s 🐍, πœ†, & πŸ‡ΊπŸ‡Έ Profile picture
DM me! RT = See this & Like = Thx 4 posting! #Rstats #Python #Emacs #Haskell #Finance #Jesus NYC, πŸ‡ΊπŸ‡Έ
Nov 15, 2022 β€’ 7 tweets β€’ 5 min read
@BobBish40288847 @bennyjohnson Here's his words as accurately as I've had time to transcribe them:

> Yeah absolutely and I think that gets to the point this can be a great thing for the world, it can be a messy thing, um, but I think that at its core you know we have seen, uh, millions of dollars go @BobBish40288847 @bennyjohnson > through you know the systems we've given I think something close to a million ourselves as well to support uh humanitarian aid and <> in Ukraine, and I uh you know when you think about what it would take to get uh you know to get funds (close?) to, the government there where,
Feb 7, 2018 β€’ 68 tweets β€’ 16 min read
High level #python #tutorial thread:
Python is a high level language that runs bytecode in its virtual machine.
Everything is an object.
It supports OOP up to multiple inheritance and functional programming.
Typing is polymorphic - duck typing is preferred
A Python script is a file with a name like name.py - we indent at four spaces (it matters), comments (after #) don't execute - and is typically written like:

def main(): # function
print("Hello world")

if __name__ == '__main__': # then entry point
main()