day48
摘要:1.hclm 2.css html 骨架 <标签1 样式=xxx> <标签2 样式=xxx> 1.重复的样式 2.文档内容和样式的解耦 css 层叠 样式 表 css如何引用 ? 1.直接在标签里面 style= “样式1;样式;” 2.在head中通过style标签定义 3.把样式单独写在css文
阅读全文
2022/1/5 fluent python开始
摘要:colors = ['black', 'white']sizes = ['s', 'm', 'l']tshirts = [(color, size) for color in colors for size in sizes]print(tshirts)#列表推导的作用只有一个,生成列表。#生成器表
阅读全文