中统
display:box、display:flex实现多行文本垂直居中
display:box、display:flex实现多⾏⽂本垂直居中统⼀的样式⽂字⽔平居中text-align: center;.box{height: 200px;width: 200px;background-color: #DDDDDD;text-align: center;margin: 20px;padding: 0 20px;}1、单⾏⽂本垂直居中设置⾏⾼line-height 和⽗元...
python读写文件的语句_Python读写文件
python读写⽂件的语句_Python读写⽂件读⽂件try:f = open('/path/to/file', 'r')ad())except IOError as e:print('except:', e)finally:if f:f.close()使⽤with语句会⾃动调⽤close()⽅法:with open('/path/to/file', 'r') as f:pri...