# Boletíns


```{r}
for (i in 1:5) {
  cat('ola')
}
```

```{r}
celsius_to_kelvin <- function(temp_C) {
  temp_K <- temp_C + 273.15
  return(temp_K)
}
celsius_to_kelvin(0)
```

```{r}
sample(1:11,10,replace=F) 
```


```{r, include=FALSE}
library(reticulate)
```

```{python, include=FALSE}
from numpy import *
x = random.randint(100)
```
```{r, include=FALSE}
py$x
```

Valor sorteado: `r py$x`






