การใช้ dictionary แบบ Pythonic

ประเภทข้อมูลใน Python

Jason Myers

Instructor

ใช้ dictionary แบบ Pythonic มากขึ้น

  • เมธอด .items() คืนค่าออบเจกต์ที่วนซ้ำได้
for gallery, phone_num in art_galleries.items():
    print(gallery)
    print(phone_num)
'Miakey Art Gallery'
'(718) 686-0788'
'Morning Star Gallery Ltd'
'(212) 334-9330'}
'New York Art Expo Inc'
'(212) 363-8280'
ประเภทข้อมูลใน Python

ตรวจสอบข้อมูลใน dictionary

  • .get() ต้องทำงานมากในการตรวจสอบ key
  • ตัวดำเนินการ in มีประสิทธิภาพและชัดเจนกว่ามาก
'11234' in art_galleries
False
if '10010' in art_galleries:
    print('I found: %s' % art_galleries['10010'])
else:
    print('No galleries found.')
I found: {'Nyabinghi Africian Gift Shop': '(212) 566-3336'}
ประเภทข้อมูลใน Python

มาฝึกกันเถอะ!

ประเภทข้อมูลใน Python

Preparing Video For Download...