python scope of variables | python tutorials | python local and global variables

Published: 11 May 2024
on channel: FINTEKPOINT
9
2

In this video, we see about the scope of variables in python

Variables that are created outside of a function (as in all of the examples above) are known as global variables.

Global variables can be used by everyone, both inside of functions and outside.

If you create a variable with the same name inside a function, this variable will be local, and can only be used inside the function. The global variable with the same name will remain as it was, global and with the original value.
comment your output :
x = "awesome"

def myfunc():
x = "fantastic"
print("Python is " + x)

myfunc()

print("Python is " + x)


On this page of the site you can watch the video online python scope of variables | python tutorials | python local and global variables with a duration of hours minute second in good quality, which was uploaded by the user FINTEKPOINT 11 May 2024, share the link with friends and acquaintances, this video has already been watched 9 times on youtube and it was liked by 2 viewers. Enjoy your viewing!