1 + 2
515430 + 1545135
3 * 4
15461354688 * 15644187414
a = "Victor"
b = " es"
c = " Gay"
d = " Rey"
e = " Tu"
print(f"{a}{b}{e}{d}")
print(f"{a}{b}{c}")
mi_primera_variable = "tiene un contenido muy extenso"
mi_segunda_variable = "es muy interesante"
print(f"¡Este curso {mi_primera_variable} y {mi_segunda_variable}!")
pip install vega-datasets session-info
import matplotlib.pyplot as plt
import numpy as np
import pandas as pd
import scipy as sc
import seaborn as sns
# load an example dataset
from vega_datasets import data
cars = data.cars()
# plot the dataset, referencing dataframe column names
import altair as alt
alt.Chart(cars).mark_bar().encode(
x=alt.X('Miles_per_Gallon', bin=True),
y='count()',
)