Back to Freecodecamp

Iterations: More Patterns

curriculum/challenges/english/blocks/python-for-everybody/5e7b9f070b6c005b0e76f05f.md

latest378 B
Original Source

--description--

More resources:

- <a href="https://www.youtube.com/watch?v=kjxXZQw0uPg" target="_blank" rel="noopener noreferrer nofollow">Exercise</a>

--questions--

--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

--video-solution--

2