2017-09-07 52 views

回答

3

字典有一個fromkeys類方法,只是你想要的:

>>> dict.fromkeys((3, 4, 5), "Spring") 
{3: 'Spring', 4: 'Spring', 5: 'Spring'} 
相關問題