
python学习
mjx792
这个作者很懒,什么都没留下…
展开
-
“reflection_pad2d_out_template“ not implemented for ‘Byte‘
解决pytorch问题“"reflection_pad2d_out_template" not implemented for 'Byte'”原创 2022-11-04 17:26:17 · 1496 阅读 · 0 评论 -
python学习笔记(四)——文件管理
encoding = None #告诉解释解释器 当前打开文件是什么编码 #None 解释器默认编码 utf-8原创 2021-12-06 20:54:29 · 89 阅读 · 0 评论 -
python学习笔记(三)——字符串
格式化输出 # 格式化输出:f-string person1='m' person2='w' print(f'{person1}对{person2}说:"你好。"') 运行结果原创 2021-01-27 17:09:51 · 76 阅读 · 0 评论 -
python学习笔记(二)——转义字符
转义字符 功能 \(行尾) 续行符 \\ 反斜杠符号 \’ 单引号 \a 响铃 \b 退格(Backspace) \e 转义 \000 空 \n 换行 \v 纵向制表符 \t 横向制表符 \r 回车 \f 换页 \n 换行 print('hell\nworld') 输出 \t 横向制表符 print('hello\tworld') 输出 \r 回车 print('helloha\rworld') 调试结果 直接运行结果 \b 退...原创 2021-01-27 14:19:12 · 140 阅读 · 0 评论 -
python学习笔记(一)——print用法
python学习笔记(一)——print用法 B站视频链接https://www.bilibili.com/video/BV1wD4y1o7AS 对应P6 print()可以输出数字、字符串、含有运算符的表达式 数字 ; print(123,12.5) 输出 123 12.5 字符串; print('hello world') 输出 hello world 3. **** ; dac 5. 全新的 KaTeX数学公式 语法; 6. 增加了支持甘特图的mermaid语法1 功能; 7. 增加原创 2021-01-27 13:26:35 · 184 阅读 · 0 评论