2021-02-06 04:42:36 +00:00
|
|
|
---
|
|
|
|
id: 5e7b9f070b6c005b0e76f05f
|
2022-03-10 20:35:22 +05:30
|
|
|
title: 'Iteraciones: Más patrones'
|
2021-02-06 04:42:36 +00:00
|
|
|
challengeType: 11
|
|
|
|
videoId: 9Wtqo6vha1M
|
2022-03-10 20:35:22 +05:30
|
|
|
bilibiliIds:
|
|
|
|
aid: 674492981
|
|
|
|
bvid: BV1hU4y1H7tF
|
|
|
|
cid: 376531204
|
2021-02-06 04:42:36 +00:00
|
|
|
dashedName: iterations-more-patterns
|
|
|
|
---
|
|
|
|
|
|
|
|
# --description--
|
|
|
|
|
2022-03-10 20:35:22 +05:30
|
|
|
Más recursos:
|
2021-02-06 04:42:36 +00:00
|
|
|
|
2022-03-10 20:35:22 +05:30
|
|
|
\- [Ejercicio](https://www.youtube.com/watch?v=kjxXZQw0uPg)
|
2021-02-06 04:42:36 +00:00
|
|
|
|
|
|
|
# --question--
|
|
|
|
|
|
|
|
## --text--
|
|
|
|
|
2022-03-10 20:35:22 +05:30
|
|
|
¿Cuál de estos se evalúa en False?
|
2021-02-06 04:42:36 +00:00
|
|
|
|
|
|
|
## --answers--
|
|
|
|
|
|
|
|
```python
|
|
|
|
0 == 0.0
|
|
|
|
```
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
```python
|
|
|
|
0 is 0.0
|
|
|
|
```
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
```python
|
|
|
|
0 is not 0.0
|
|
|
|
```
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
```python
|
|
|
|
0 = 0.0
|
|
|
|
```
|
|
|
|
|
|
|
|
## --video-solution--
|
|
|
|
|
|
|
|
2
|
|
|
|
|