摘要: 阅读全文
posted @ 2021-03-05 22:22 火烧火燎 阅读(20) 评论(0) 推荐(0)
摘要: a=[12,25,'we','gg'] print(a[0]) b=[] b.append('fy') print(b) q=list() q=list(range(10)) print(q) s=list() s=list('sffg,tyy') print(s) 阅读全文
posted @ 2021-03-05 22:20 火烧火燎 阅读(55) 评论(0) 推荐(0)
摘要: a="mingzi:{0},daxiao{1}" print(a.format("wo",33)) b="mingzi:{0},cuenkuai:{1:.0f}" print(b.format("wo",12338.2348)) 阅读全文
posted @ 2021-03-05 14:53 火烧火燎 阅读(155) 评论(0) 推荐(0)