Русские видео

Сейчас в тренде

Иностранные видео


Скачать с ютуб #36 Python Tutorial for Beginners | Global Keyword in Python | Global vs Local Variable в хорошем качестве

#36 Python Tutorial for Beginners | Global Keyword in Python | Global vs Local Variable 6 лет назад


Если кнопки скачивания не загрузились НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием, пожалуйста напишите в поддержку по адресу внизу страницы.
Спасибо за использование сервиса savevideohd.ru



#36 Python Tutorial for Beginners | Global Keyword in Python | Global vs Local Variable

Check out our courses: Spring and Microservices Weekend Live Batch : https://bit.ly/spring-live-weekend Coupon: TELUSKO10 (10% Discount) Master Java Spring Development : https://bit.ly/java-spring-cloud For More Queries WhatsApp or Call on : +919008963671 website : https://courses.telusko.com/ Instagram :   / navinreddyofficial   Linkedin :   / navinreddy20   TELUSKO Android App : https://bit.ly/TeluskoApp Discord :   / discord   In this lectre we are discussing: #1 Scope of variable #2 Local variable #3 Global variable #4 Global keyword #5 Global() function #1 Scope of variable -- scope of variable means where we can access the variable -- there are two types of scope of variable 1. local scope 2. global scope #2 Local variable -- local variable means variable which is defined inside the function -- we can access the local variable inside the function only -- we cannot access the local variable outside the function Local Scope: When a variable or function is defined inside a function, it is said to be in the local scope of that function. Variables defined in the local scope are only accessible within that function and are destroyed once the function completes execution. Local variables have the highest priority in accessing over global variables of the same name. def func(): x = 10 print(x) func() -- the variable x is defined inside the function, and it can only be accessed within the function. #3 Global variable -- global variable means variable which is defined outside the function -- we can access the global variable inside the function -- we can access the global variable outside the function x = 10 def func(): print(x) func() -- the variable x is defined outside the function, and it can be accessed within the function. #4 Global keyword -- if we want to access the global variable inside the function and we want to change the value of global variable inside the function then we have to use global keyword. x = 10 def func(): global x x = 15 print(x) func() -- in this case no new variable is created inside the function, but the global variable x is accessed and modified inside the function. #5 Global() function -- if we want to access the global variable inside the function and we want to change the value of global variable inside the function then we have to use global() function. e.g x = 10 def func(): x = 15 print("local x: ",x) y = globals()['x'] print("global x: ",y) globals()['x'] = 20 -- using globals()['x'] we can access the global variable x inside the function and we can change the value of global variable x inside the function. Python Tutorial to learn Python programming with examples Complete Python Tutorial for Beginners Playlist :    • #1 Python Tutorial for Beginners | In...   Python Tutorial in Hindi :    • #1 Python Tutorial | Introduction | I...   Github :- https://github.com/navinreddy20/Python- Java and Spring Framework For beginners with Spring Boot : - http://bit.ly/3LDMj8D Java Tutorial for Beginners (2023) :- http://bit.ly/3yARVbN Subscribe to our other channel: Navin Reddy :    / @navinreddy   Telusko Hindi :    / @teluskohindi  

Comments