All language subtitles for 32. Scope

af Afrikaans
ak Akan
sq Albanian
am Amharic
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
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
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,480 --> 00:00:05,930 In order to finalize our understanding of functions we have to talk about scope. 2 00:00:06,060 --> 00:00:10,880 Another one of our key terms what is scope let's have a look 3 00:00:13,770 --> 00:00:24,090 scope is something present in a lot of programming languages and scope simply means what variables do 4 00:00:24,090 --> 00:00:28,920 I have access to. 5 00:00:28,940 --> 00:00:37,740 So what do I mean by that well we've seen this before right where I do print and then let's say Nate 6 00:00:38,130 --> 00:00:47,770 if I click Run I'll get an error a name error name name is not defined because well it doesn't exist 7 00:00:47,900 --> 00:00:48,470 right. 8 00:00:48,580 --> 00:00:55,190 And up to this point we haven't really discussed this but this is because of scope what variables do 9 00:00:55,190 --> 00:01:00,100 I have access to the Python interpreter says hey what do I have access to. 10 00:01:00,140 --> 00:01:05,660 And when we use something that it doesn't understand or doesn't have access to it's going to throw a 11 00:01:05,660 --> 00:01:15,100 name there or a variable is not defined our and scope in Python has what we call functional scope or 12 00:01:15,100 --> 00:01:17,250 function scope. 13 00:01:17,320 --> 00:01:17,980 What does that mean. 14 00:01:18,610 --> 00:01:26,190 Well up until now when we create a variable like total equals to a hundred. 15 00:01:26,230 --> 00:01:29,360 This is part of what we call global scope. 16 00:01:29,440 --> 00:01:35,080 That means anybody on this file has access to this total variable. 17 00:01:35,110 --> 00:01:39,690 I can use this inside of a conditional block I can use it inside of a function. 18 00:01:39,820 --> 00:01:48,150 It has global scope but when I say Python has function scope what I mean is that when we create a function 19 00:01:48,810 --> 00:02:01,540 and let's say we create total as some or let's say some func and we create total inside of the function. 20 00:02:01,820 --> 00:02:09,400 If I print Total here and I click Run I get the same thing name. 21 00:02:09,410 --> 00:02:11,720 Total is not defined. 22 00:02:11,720 --> 00:02:14,830 This is because of Python's function scope. 23 00:02:14,990 --> 00:02:22,510 Anytime we create a variable if it's not inside of a function then it is part of the global scope. 24 00:02:22,530 --> 00:02:23,690 We have access to it. 25 00:02:23,790 --> 00:02:28,150 But you see over here we get that red underline undefined name total. 26 00:02:28,350 --> 00:02:38,140 If let's say for example I had a condition if true then X equals to 10. 27 00:02:38,270 --> 00:02:50,840 If I do this and I say X and I click Run I have 10 because well although I have indentation the only 28 00:02:50,840 --> 00:02:56,560 time I create a new scope you can think of this as a new universe that we spot. 29 00:02:56,760 --> 00:03:02,040 Well we can only do that when we define a function like this. 30 00:03:02,070 --> 00:03:08,400 So think of scope as a new world that we create in our case when we create a function we create a new 31 00:03:08,400 --> 00:03:14,400 world that anything that's indented inside of the function is its own world that we don't really have 32 00:03:14,400 --> 00:03:14,970 access to. 33 00:03:14,970 --> 00:03:23,010 We can only use total if we indent print and it's part of this world. 34 00:03:23,250 --> 00:03:24,780 That's what scope is. 35 00:03:25,110 --> 00:03:27,790 Who has access to who. 36 00:03:27,810 --> 00:03:33,030 So let's take a break here and I want to play a little game in the next video where we try and figure 37 00:03:33,030 --> 00:03:35,860 out who has access to who. 38 00:03:36,060 --> 00:03:37,370 I'll see that one by. 3915

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