2020-08-13 12:00:20 +02:00
|
|
|
---
|
|
|
|
id: 5e7b9f070b6c005b0e76f05f
|
|
|
|
challengeType: 11
|
|
|
|
videoId: 9Wtqo6vha1M
|
2021-01-13 03:31:00 +01:00
|
|
|
dashedName: iterations-more-patterns
|
2020-08-13 12:00:20 +02:00
|
|
|
---
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
# --description--
|
|
|
|
|
2020-08-13 12:00:20 +02:00
|
|
|
More resources:
|
2020-12-16 00:37:30 -07:00
|
|
|
|
|
|
|
\- [Exercise](https://www.youtube.com/watch?v=kjxXZQw0uPg)
|
|
|
|
|
|
|
|
# --question--
|
|
|
|
|
|
|
|
## --text--
|
|
|
|
|
|
|
|
Which of these evaluates to False?
|
|
|
|
|
|
|
|
## --answers--
|
|
|
|
|
|
|
|
```python
|
|
|
|
0 == 0.0
|
|
|
|
```
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
```python
|
|
|
|
0 is 0.0
|
|
|
|
```
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
```python
|
|
|
|
0 is not 0.0
|
|
|
|
```
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
```python
|
|
|
|
0 = 0.0
|
2020-08-13 12:00:20 +02:00
|
|
|
```
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
## --video-solution--
|
|
|
|
|
|
|
|
2
|
|
|
|
|