python字典定義
```
smart_lights = {
'light': {'brightness': , 'on_off': True},
'light': {'brightness': , 'on_off': False},
#...
}
```
對于在線瑜伽課程定義個字典來表示每節(jié)課程的信息,鍵是課程名稱或ID,值則是關(guān)于該課程的所有詳細(xì)信息,如課程時長、難度級別、教師姓名等。
```
yoga_courses = {
'course': {'duration': , 'level': 'beginner', 'instructor': 'John'},
'course': {'duration': , 'level': 'intermediate', 'instructor': 'Jane'},
#...
}
```
房屋租賃信息通過字典進(jìn)行管理,鍵為房屋唯標(biāo)識,值則包含房租、地理位置、是否空閑等信息。
```
rental_properties = {
'property': {'rent': , 'location': 'New York', 'available': True},
'property': {'rent': , 'location': 'Los Angeles', 'available': False},
#...
}
```
在生物制藥中使用字典來儲存各種藥物的相關(guān)數(shù)據(jù),如藥效、副作用、適用人群等。
```
drugs = {
'drug': {'efficacy': 'good', 'side_effects': 'mild', 'for_who': 'adults'},
'drug': {'efficacy': 'excellent', 'side_effects': 'moderate', 'for_who': 'children'},
#...
}
```