2020-04-06 14:49:56 -04:00
|
|
|
---
|
|
|
|
id: 5e7b9f070b6c005b0e76f05f
|
2020-04-21 23:37:02 -05:00
|
|
|
title: 'Iterations: More Patterns'
|
2020-04-06 14:49:56 -04:00
|
|
|
challengeType: 11
|
|
|
|
videoId: 9Wtqo6vha1M
|
2021-10-01 12:24:12 +08:00
|
|
|
bilibiliIds:
|
|
|
|
aid: 674492981
|
|
|
|
bvid: BV1hU4y1H7tF
|
|
|
|
cid: 376531204
|
2021-01-13 03:31:00 +01:00
|
|
|
dashedName: iterations-more-patterns
|
2020-04-06 14:49:56 -04:00
|
|
|
---
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
# --description--
|
|
|
|
|
2020-04-06 14:49:56 -04:00
|
|
|
More resources:
|
2020-11-27 19:02:05 +01: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
|
2020-04-06 14:49:56 -04:00
|
|
|
```
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
---
|
|
|
|
|
|
|
|
```python
|
|
|
|
0 is not 0.0
|
|
|
|
```
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
```python
|
|
|
|
0 = 0.0
|
|
|
|
```
|
|
|
|
|
|
|
|
## --video-solution--
|
|
|
|
|
|
|
|
2
|
|
|
|
|