Quarto can be used with Python

Please note that this relies on having Python installed on your computer.

First a Python codeblock that imports the PyCall package:

import Pkg; Pkg.add("PythonCall")  # run this line if PythonCall.jl not installed
using PythonCall

An example Python code block:

name = "Kenny"
favorite_bird = "nuthatch"

print(f"Hi, I'm {name}. My favorite bird is the {favorite_bird}.")
Hi, I'm Kenny. My favorite bird is the nuthatch.