web-val-test

This is a Quarto website. test deployement with Cloudflare pages.

To learn more about Quarto websites visit https://quarto.org/docs/websites.

Sections

test = "Hello World from Python"
print(test)
Hello World from Python
import pandas as pd

data = {'Name': ['Alice', 'Bob', 'Charlie'],
        'Age': [25, 30, 35],
        'City': ['New York', 'Los Angeles', 'Chicago']}

df = pd.DataFrame(data)
print(df)
      Name  Age         City
0    Alice   25     New York
1      Bob   30  Los Angeles
2  Charlie   35      Chicago
import matplotlib.pyplot as plt
import numpy as np
x = np.linspace(0, 10, 100)
y = np.sin(x)
plt.plot(x, y)
plt.title("Sine Wave")
plt.xlabel("X-axis")
plt.ylabel("Y-axis")
plt.show()  

import sys
print(sys.executable)
/Users/valentingoupille/web-val-test/.venv/bin/python3