close

realpython.com Online Courses - March 2024

Jupyter Notebook: An Introduction Real Python

Jupyter Notebook supports Markdown, which is a markup language that is a superset of HTML. This tutorial will cover some of the basics of what you can do with Markdown. Set a new cell to Markdown and then add the following text to the cell: When you run the cell, the output should look like this: If you would prefer to bold your text, use a double underscore or double asterisk. ...

realpython.com Visit Site

Python Metaclasses – Real Python

The term metaprogramming refers to the potential for a program to have knowledge of or manipulate itself. Python supports a form of metaprogramming for classes called metaclasses. Metaclasses are an esoteric OOP concept, lurking behind virtually all Python code. You are using them whether you are aware of it or not.

realpython.com Visit Site

top