About the Tutorial



Download 2,85 Mb.
Pdf ko'rish
bet141/234
Sana28.05.2022
Hajmi2,85 Mb.
#614232
1   ...   137   138   139   140   141   142   143   144   ...   234
Bog'liq
python3 tutorial 060821094426

Example
 
The following function takes a string as input parameter and prints it on the standard 
screen. 
def printme( str ): 
"This prints a passed string into this function" 
print (str) 
15.
 
Python 3 – Functions


Python 3 
200 
return 
Calling a Function 
Defining a function gives it a name, specifies the parameters that are to be included in the 
function and structures the blocks of code. 
Once the basic structure of a function is finalized, you can execute it by calling it from 
another function or directly from the Python prompt. Following is an example to call the 
printme()
function- 
#!/usr/bin/python3 
# Function definition is here 
def printme( str ): 
"This prints a passed string into this function" 
print (str) 
return 
# Now you can call printme function 
printme("This is first call to the user defined function!") 
printme("Again second call to the same function") 
When the above code is executed, it produces the following result- 
This is first call to the user defined function! 
Again second call to the same function 
Pass by Reference vs Value 
All parameters (arguments) in the Python language are passed by reference. It means if 
you change what a parameter refers to within a function, the change also reflects back in 
the calling function. For example- 
#!/usr/bin/python3 
# Function definition is here 
def changeme( mylist ): 
"This changes a passed list into this function" 
print ("Values inside the function before change: ", mylist) 
mylist[2]=50 
print ("Values inside the function after change: ", mylist) 


Python 3 
201 
return 
# Now you can call changeme function 
mylist = [10,20,30] 
changeme( mylist ) 
print ("Values outside the function: ", mylist)
Here, we are maintaining reference of the passed object and appending values in the same 
object. Therefore, this would produce the following result- 
Values inside the function before change: [10, 20, 30] 
Values inside the function after change: [10, 20, 50] 
Values outside the function: [10, 20, 50] 
There is one more example where argument is being passed by reference and the 
reference is being overwritten inside the called function. 
#!/usr/bin/python3 
# Function definition is here 
def changeme( mylist ): 
"This changes a passed list into this function" 
mylist = [1,2,3,4] # This would assi new reference in mylist 
print ("Values inside the function: ", mylist) 
return 
# Now you can call changeme function 
mylist = [10,20,30] 
changeme( mylist ) 
print ("Values outside the function: ", mylist) 
The parameter
mylist
is local to the function changeme. Changing mylist within the 
function does not affect
mylist. The function accomplishes nothing and finally this would 
produce the following result- 
Values inside the function: [1, 2, 3, 4] 
Values outside the function: [10, 20, 30] 


Python 3 
202 

Download 2,85 Mb.

Do'stlaringiz bilan baham:
1   ...   137   138   139   140   141   142   143   144   ...   234




Ma'lumotlar bazasi mualliflik huquqi bilan himoyalangan ©hozir.org 2024
ma'muriyatiga murojaat qiling

kiriting | ro'yxatdan o'tish
    Bosh sahifa
юртда тантана
Боғда битган
Бугун юртда
Эшитганлар жилманглар
Эшитмадим деманглар
битган бодомлар
Yangiariq tumani
qitish marakazi
Raqamli texnologiyalar
ilishida muhokamadan
tasdiqqa tavsiya
tavsiya etilgan
iqtisodiyot kafedrasi
steiermarkischen landesregierung
asarlaringizni yuboring
o'zingizning asarlaringizni
Iltimos faqat
faqat o'zingizning
steierm rkischen
landesregierung fachabteilung
rkischen landesregierung
hamshira loyihasi
loyihasi mavsum
faolyatining oqibatlari
asosiy adabiyotlar
fakulteti ahborot
ahborot havfsizligi
havfsizligi kafedrasi
fanidan bo’yicha
fakulteti iqtisodiyot
boshqaruv fakulteti
chiqarishda boshqaruv
ishlab chiqarishda
iqtisodiyot fakultet
multiservis tarmoqlari
fanidan asosiy
Uzbek fanidan
mavzulari potok
asosidagi multiservis
'aliyyil a'ziym
billahil 'aliyyil
illaa billahil
quvvata illaa
falah' deganida
Kompyuter savodxonligi
bo’yicha mustaqil
'alal falah'
Hayya 'alal
'alas soloh
Hayya 'alas
mavsum boyicha


yuklab olish