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

เราจะคืนพจนานุกรมจากฟังก์ชัน Python ได้อย่างไร


เราสามารถคืนพจนานุกรมจากฟังก์ชันหลามได้หลายวิธี พิจารณารายการที่ให้ไว้ด้านล่าง

ตัวอย่าง

# This function returns a dictionary
def foo():
     d = dict();
     d['str'] = "Tutorialspoint"
     d['x']   = 50
     return d
print foo()

ผลลัพธ์

{'x': 50, 'str': 'Tutorialspoint'}