Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

การเรียกใช้ฟังก์ชันใน Python


การกำหนดฟังก์ชันให้ชื่อเท่านั้น ระบุพารามิเตอร์ที่จะรวมอยู่ในฟังก์ชันและจัดโครงสร้างบล็อกของโค้ด

เมื่อโครงสร้างพื้นฐานของฟังก์ชันได้รับการสรุปแล้ว คุณสามารถดำเนินการได้โดยการเรียกจากฟังก์ชันอื่นหรือโดยตรงจากพรอมต์ของ Python ต่อไปนี้เป็นตัวอย่างการเรียกใช้ฟังก์ชัน printme() -

#!/usr/bin/python
# 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("I'm first call to user defined function!")
printme("Again second call to the same function")

ผลลัพธ์

เมื่อโค้ดด้านบนถูกรัน มันจะให้ผลลัพธ์ดังต่อไปนี้ −

I'm first call to user defined function!
Again second call to the same function