UNCLASSIFIED

Skip to content
Snippets Groups Projects
Commit a28ea98a authored by kmc-home's avatar kmc-home
Browse files

update content 6

parent 832c158b
No related merge requests found
Pipeline #120143 passed with stage
in 11 seconds
del.py 0 → 100644
import dis
def hello():
print("Hello, World!")
dis.dis(hello)
......@@ -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.
......
......@@ -37,7 +37,7 @@ nav:
########################################
# ONLY EDIT WHEN CREATING A NEW SITE IN A NEW REPO
########################################
site_name: 170D BOLC
site_name: 170D WOBC
docs_dir: docs
site_dir: public
strict: false
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment