GitLab now enforces expiry dates on tokens that originally had no set expiration date. Those tokens were given an expiration date of one year later. Please review your personal access tokens, project access tokens, and group access tokens to ensure you are aware of upcoming expirations. Administrators of GitLab can find more information on how to identify and mitigate interruption in our documentation.
@@ -123,6 +123,20 @@ Python is an interpreted language, meaning it executes code directly, line by li
- Platform specific
- More complex build process
??? "Compiled Python?"
While 99% of the time you'll hear python being referred to as an interpreted language, all languages higher then assembly are "compiled" to some intermediate representation before execution. The python code you write is compiled into an intermediate representation called bytecode, which is then executed by the python virtual machine.
```python
import dis
def hello():
print("Hello, World!")
dis.dis(hello)
```
## Code and Data
Programs work by manipulating data using code. Data can be numbers, text, or more complex information.