1
00:00:00,180 --> 00:00:01,650
This is a python quiz.

2
00:00:01,710 --> 00:00:09,090
I'm going to start python on my bid to host And I'm going to set a equal to 10 B equal to 10 what will

3
00:00:09,090 --> 00:00:13,520
be displayed when I press enter now answer is true.

4
00:00:13,560 --> 00:00:14,190
Why.

5
00:00:14,190 --> 00:00:16,490
Because a does equal B.

6
00:00:16,920 --> 00:00:21,420
If I say A equals a plus one and run that again.

7
00:00:21,420 --> 00:00:24,150
Notice I get false a doesn't equal B.

8
00:00:24,240 --> 00:00:26,590
This is a boolean test.

9
00:00:26,700 --> 00:00:28,370
Is this equal to that.

10
00:00:28,380 --> 00:00:29,700
Answer is no.

11
00:00:29,730 --> 00:00:34,500
If I set a equal to one two three is a equal to B.

12
00:00:34,500 --> 00:00:35,460
No it's not.

13
00:00:35,520 --> 00:00:41,050
If I said to C equal to one two three is equal to C yes it is.

14
00:00:41,160 --> 00:00:46,160
Sometimes you need to do tests in your code to say is this equal to this.

15
00:00:46,170 --> 00:00:47,160
If true do that.

16
00:00:47,190 --> 00:00:48,590
If false do that.

17
00:00:48,660 --> 00:00:52,240
So it's important to know how to work with billions in Python.
