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

ฟังก์ชัน dir( ) ใน Python


ฟังก์ชัน dir() ในตัวส่งกลับรายการสตริงที่มีชื่อที่กำหนดโดยโมดูลที่เรียงลำดับแล้ว

รายการประกอบด้วยชื่อของโมดูล ตัวแปร และฟังก์ชันทั้งหมดที่กำหนดไว้ในโมดูล ต่อไปนี้เป็นตัวอย่างง่ายๆ −

ตัวอย่าง

#!/usr/bin/python
# Import built-in module math
import math
content = dir(math)
print content

ผลลัพธ์

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

['__doc__', '__file__', '__name__', 'acos', 'asin', 'atan',
'atan2', 'ceil', 'cos', 'cosh', 'degrees', 'e', 'exp',
'fabs', 'floor', 'fmod', 'frexp', 'hypot', 'ldexp', 'log',
'log10', 'modf', 'pi', 'pow', 'radians', 'sin', 'sinh',
'sqrt', 'tan', 'tanh']

ในที่นี้ ตัวแปรสตริงพิเศษ __name__ คือชื่อของโมดูล และ __file__ คือชื่อไฟล์ที่โมดูลถูกโหลด