> 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
External Tweet loading...
If nothing shows, it may have been deleted
by @aaronchall view original on Twitter
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()