09 2021 档案

摘要:一、写法 不需要大括号 变量直接声明 通过缩进判断上下级关系 # 单行注释 str = 'hello python' """ 多行注释,'''也可以 """ if 'h' in str: return True 二、字符串 1、字符串中使用变量, f"{}" name = '小明' age = 12 阅读全文
posted @ 2021-09-08 14:36 HeSh 阅读(64) 评论(0) 推荐(0)
摘要:表格组件WTable.vue <template> <div class="wTable"> <!-- 头部工具栏 --> <div v-if="tools && tools.length>0 && tools[0].label" class="toolBar"> <template v-for=" 阅读全文
posted @ 2021-09-07 17:10 HeSh 阅读(2510) 评论(0) 推荐(0)