All language subtitles for 9. Optional bin() and complex

af Afrikaans
ak Akan
sq Albanian
am Amharic
ar Arabic
hy Armenian
az Azerbaijani
eu Basque
be Belarusian
bem Bemba
bn Bengali
bh Bihari
bs Bosnian
br Breton
bg Bulgarian
km Cambodian
ca Catalan
ceb Cebuano
chr Cherokee
ny Chichewa
zh-CN Chinese (Simplified)
zh-TW Chinese (Traditional)
co Corsican
hr Croatian
cs Czech
da Danish
nl Dutch
en English
eo Esperanto
et Estonian
ee Ewe
fo Faroese
tl Filipino
fi Finnish
fr French
fy Frisian
gaa Ga
gl Galician
ka Georgian
de German
el Greek
gn Guarani
gu Gujarati
ht Haitian Creole
ha Hausa
haw Hawaiian
iw Hebrew
hi Hindi
hmn Hmong
hu Hungarian
is Icelandic
ig Igbo
id Indonesian
ia Interlingua
ga Irish
it Italian
ja Japanese
jw Javanese
kn Kannada
kk Kazakh
rw Kinyarwanda
rn Kirundi
kg Kongo
ko Korean
kri Krio (Sierra Leone)
ku Kurdish
ckb Kurdish (Soranî)
ky Kyrgyz
lo Laothian
la Latin
lv Latvian
ln Lingala
lt Lithuanian
loz Lozi
lg Luganda
ach Luo
lb Luxembourgish
mk Macedonian
mg Malagasy
ms Malay
ml Malayalam
mt Maltese
mi Maori
mr Marathi
mfe Mauritian Creole
mo Moldavian
mn Mongolian
my Myanmar (Burmese)
sr-ME Montenegrin
ne Nepali
pcm Nigerian Pidgin
nso Northern Sotho
no Norwegian
nn Norwegian (Nynorsk)
oc Occitan
or Oriya
om Oromo
ps Pashto
fa Persian
pl Polish
pt-BR Portuguese (Brazil)
pt Portuguese (Portugal)
pa Punjabi
qu Quechua
ro Romanian
rm Romansh
nyn Runyakitara
ru Russian
sm Samoan
gd Scots Gaelic
sr Serbian Download
sh Serbo-Croatian
st Sesotho
tn Setswana
crs Seychellois Creole
sn Shona
sd Sindhi
si Sinhalese
sk Slovak
sl Slovenian
so Somali
es Spanish
es-419 Spanish (Latin American)
su Sundanese
sw Swahili
sv Swedish
tg Tajik
ta Tamil
tt Tatar
te Telugu
th Thai
ti Tigrinya
to Tonga
lua Tshiluba
tum Tumbuka
tr Turkish
tk Turkmen
tw Twi
ug Uighur
uk Ukrainian
ur Urdu
uz Uzbek
vi Vietnamese
cy Welsh
wo Wolof
xh Xhosa
yi Yiddish
yo Yoruba
zu Zulu
Would you like to inspect the original subtitles? These are the user uploaded subtitles that are being translated: 1 00:00:00,450 --> 00:00:01,400 Welcome back. 2 00:00:01,410 --> 00:00:07,130 This is a quick optional video that well with something that you probably won't use. 3 00:00:07,140 --> 00:00:13,050 But I want you to just know that it's out there and that is there's actually an extra data type that 4 00:00:13,080 --> 00:00:13,970 I did and talk about. 5 00:00:14,340 --> 00:00:16,080 And it's called complex. 6 00:00:16,260 --> 00:00:20,750 And as the name suggests it's pretty complex. 7 00:00:20,910 --> 00:00:32,150 However a complex number again is a number that is a third type instead of int and float. 8 00:00:32,160 --> 00:00:34,830 We also have this type four numbers. 9 00:00:34,830 --> 00:00:41,340 Now the reason I'm not really teaching complex is that you only use this if you're doing something really 10 00:00:41,340 --> 00:00:42,960 really complex math. 11 00:00:43,020 --> 00:00:45,150 Most of the time you'll never use it. 12 00:00:45,150 --> 00:00:50,760 I personally have never used it but it is good to know that it exists. 13 00:00:50,760 --> 00:00:56,240 It's the equivalent to a real number and you can read about complex numbers if you want. 14 00:00:56,460 --> 00:00:59,370 But again that's something that you don't need to worry. 15 00:00:59,370 --> 00:01:02,110 Ninety nine point nine percent of the time. 16 00:01:02,130 --> 00:01:08,760 Another thing I want to talk to you about is this idea that these integers and floats get stored such 17 00:01:08,760 --> 00:01:17,340 as five in memory as binary that is as binary numbers ones and zeros and there's actually an action 18 00:01:17,400 --> 00:01:24,480 or function that we can use in Python called Ben for binary and you can see that a bean returns the 19 00:01:24,480 --> 00:01:27,360 binary representation of an integer. 20 00:01:27,360 --> 00:01:35,830 So it's going to return whatever the binary version of 5 is if I click Run here while I have to print 21 00:01:36,130 --> 00:01:36,910 remember. 22 00:01:37,030 --> 00:01:45,590 So let's print and click Run and I get the binary representation. 23 00:01:45,930 --> 00:01:52,440 Now instead of all zeros and ones there's also this idea of B and that is what Python uses underneath 24 00:01:52,440 --> 00:01:58,650 the hood to say a when I see this number with zero B that's a binary number. 25 00:01:58,650 --> 00:02:11,590 But if I Google binary number five I see that the binary number for 5 is 1 0 1 which again that's what 26 00:02:11,590 --> 00:02:15,640 we see here so that's really cool. 27 00:02:15,650 --> 00:02:18,850 Really interesting just to know that it exists by the way. 28 00:02:18,890 --> 00:02:25,220 Just for fun let's say that we want to return this into a decimal let's say where the computer and we 29 00:02:25,220 --> 00:02:35,810 just retrieve this binary number I can do it and then wrap this like this in single or double quotes 30 00:02:36,900 --> 00:02:45,630 and then with the end I can also say hey I want this return to a number that is base 10 which is what 31 00:02:45,840 --> 00:02:47,740 us humans use. 32 00:02:47,760 --> 00:02:58,910 So if I actually do print here and click Run well actually we have to do base to here. 33 00:02:58,910 --> 00:03:07,430 Right because what we're saying is hey this number is base 2 and convert it to integer and base to number 34 00:03:07,430 --> 00:03:10,250 is while zeros and 1 it's a binary number. 35 00:03:10,280 --> 00:03:14,910 So if I click right here look at that I get five. 36 00:03:15,780 --> 00:03:22,380 So in your head you can think of it this way when we story number like five an integer like five when 37 00:03:22,380 --> 00:03:24,030 a computer retrieves that number. 38 00:03:24,060 --> 00:03:25,670 Let's say we're do some addition. 39 00:03:25,860 --> 00:03:29,590 Well it's going to grab this for memory. 40 00:03:29,640 --> 00:03:35,040 It's going to say well this is a binary number and I'm going to convert it into integer. 41 00:03:35,040 --> 00:03:36,500 Very very cool. 42 00:03:36,510 --> 00:03:43,350 Now the reason I taught this here you won't see this a lot in beginner courses and especially so early 43 00:03:43,350 --> 00:03:44,000 in the course. 44 00:03:44,010 --> 00:03:48,630 But I think it's an important principle although you might not get tested on this ever. 45 00:03:48,810 --> 00:03:54,210 For you to just understand how things are working underneath the hood I believe is an important thing 46 00:03:54,210 --> 00:03:57,030 for you to do in order to become a great developer. 47 00:03:57,270 --> 00:04:00,200 So hopefully this doesn't confuse you too much. 48 00:04:00,210 --> 00:04:01,860 I'll see you in the next video by. 4917

Can't find what you're looking for?
Get subtitles in any language from opensubtitles.com, and translate them here.