Python Tutorial in Hindi | Global Variables in Python | Advanced Python Tutorial

preview_player
Показать описание
Python Tutorial in Hindi | Local Variables in Python | Advanced Python Tutorial
This video is part of advanced python tutorial in hindi.In this video,i have explained about global variable in python.Let's see how global variables works..
you will learn:-
1) global variables in python
2) python tutorial in hindi

source code :-

About Python Tutorial:- python for beginners-Go from Zero to Hero in python.This tutorial includes python programming videos from basics to advanced

More tutorials:-

About codeyug :-
Codeyug provides tutorials for building your programming skills.Here,you will learn various programming languages,computer science,web development with free of cost.

SHARE | SUBSCRIBE | LIKE
-- - - - - - - - - - - - - - - - - -Thanks for watching this video - - - - - - - - - - - - - - - - - -- -
Our social links:-
creator:-
$ -shantanu kejkar -$

#python #python3 #programming #codeyug #tutorial #coding
Рекомендации по теме
Комментарии
Автор

#global variable

#global variable can access anywhere in a program.
e= 4 #global variable
def total(a, b, c, ):
d=50 #local variable
print(a+b+c+d+e)
print(e)#(can access outside of the func as well as inside of the func)

total (20, 30, 40)
print(e) #doesn't give any error because you can access global variable anywhere.'

KaranSinghD-yjep