2021-02-06 04:42:36 +00:00
|
|
|
---
|
|
|
|
id: 5e7b9f070b6c005b0e76f05d
|
2022-03-10 20:35:22 +05:30
|
|
|
title: 'Iteraciones: Bucles definidos'
|
2021-02-06 04:42:36 +00:00
|
|
|
challengeType: 11
|
|
|
|
videoId: hiRTRAqNlpE
|
2022-03-10 20:35:22 +05:30
|
|
|
bilibiliIds:
|
|
|
|
aid: 291987032
|
|
|
|
bvid: BV1ff4y157Q3
|
|
|
|
cid: 376385255
|
2021-02-06 04:42:36 +00:00
|
|
|
dashedName: iterations-definite-loops
|
|
|
|
---
|
|
|
|
|
|
|
|
# --question--
|
|
|
|
|
|
|
|
## --text--
|
|
|
|
|
2022-03-10 20:35:22 +05:30
|
|
|
¿Cuántas líneas imprimirá el siguiente código?:
|
2021-02-06 04:42:36 +00:00
|
|
|
|
|
|
|
```python
|
|
|
|
for i in [2,1,5]:
|
|
|
|
print(i)
|
|
|
|
```
|
|
|
|
|
|
|
|
## --answers--
|
|
|
|
|
|
|
|
1
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
|
## --video-solution--
|
|
|
|
|
|
|
|
3
|
|
|
|
|