Unterhaltung
Nachrichten
-
I was listening to Talk Python to Me 279[0], and it's pretty cool, sounds like pycon.switowski.com/ is a good resource for Python beginners to get started with a really helpful environment, and knowledge about real…
-
Single question mark thing: If you type a question mark after a Python object, it shows you annotations and documentation related to that object: In [1]: from dataclasses import dataclass In [2]: @dataclass ..…
-
Double question mark thing: If you type two question marks after a Python object in ipython, it shows the annotations and source code related to that object: In [1]: from asdf import Asdf In [2]: Asdf?? Init si…
-