# 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, setup, include=FALSE}
library(reticulate)
```

```{python, include=FALSE}
x = 5
```
```{r, include=FALSE}
py$x
```







