首页 > 代码库 > Python学习日记之记录

Python学习日记之记录

列表

list=[‘1‘,‘2‘]

  元组

zoo=(‘1‘,‘2‘‘3‘)

  字典

d = {key1 : value1, key2 : value2 }

  

Python学习日记之记录