上一页 1 ··· 68 69 70 71 72 73 74 75 76 ··· 95 下一页
摘要: NameError: name 'is_flag' is not defined翻译:名字错误:名字‘is_flag’ 没有定义意思是,你的 is_line 变量没有定义。你可能会说,我定义了呀。那就看下面代码(下面代码主要关注 is_flag ,其他问题忽略) def test(): ## 定义全 阅读全文
posted @ 2022-12-20 22:53 悟透 阅读(497) 评论(0) 推荐(0)
摘要: 测试环境,假设: 主文件绝对路径:/home/ubu/py_test/main.py 模块文件:/home/ubu/py_test/con.py 模块目录:/home/ubu/py_test/modules/tt.py 模块目录:/home/ubu/py_test/modules/test/t1.p 阅读全文
posted @ 2022-12-16 11:05 悟透 阅读(1547) 评论(0) 推荐(0)
摘要: 方式一: import sys, getopt if ( __name__ == '__main__' ) or ( __name__ == 'main' ) : ## 参数0 是文件名+后缀 ## 参数一 Name = sys.argv[1]; ## 参数二 age = sys.argv[2]; 阅读全文
posted @ 2022-12-12 12:27 悟透 阅读(2960) 评论(0) 推荐(0)
摘要: 替换字典值,路径中的符号 >>> a={"cover": "cover_images\\test.png"} >>> >>> a=eval(str(a).replace("\\\\","/")) >>> >>> print(a) {'cover': 'cover_images/test.png'} 阅读全文
posted @ 2022-12-11 20:20 悟透 阅读(316) 评论(0) 推荐(0)
摘要: 注意,libc是系统底层库,每条命令执行都会调用,所以请谨慎修改!!! 注意,libc是系统底层库,每条命令执行都会调用,所以请谨慎修改!!! 注意,libc是系统底层库,每条命令执行都会调用,所以请谨慎修改!!! 修改错误会导致系统命令行和其他界面失效,启动系统时报错。 制作 ubuntu 的启动 阅读全文
posted @ 2022-12-06 13:16 悟透 阅读(2718) 评论(0) 推荐(0)
摘要: make 时总提示 “Makefile:142: recipe for target 'xxx' failed ” 解决方法: 路径里,不要在有中文的路径 阅读全文
posted @ 2022-12-06 13:00 悟透 阅读(1272) 评论(0) 推荐(0)
摘要: 问题: 如何将两个数字拼接 解决方法:将整形数字转成字符串拼接后,在转回整形。 >>> a = 1 >>> b = 2 >>> c = str(a) + str(b) >>> print(int(c)) 12 阅读全文
posted @ 2022-12-02 23:33 悟透 阅读(453) 评论(0) 推荐(0)
摘要: 错误:NameError: name 'getopt' is not defined 原因:没有引入模块,脚本里添加下面内容 import getopt 错误:NameError: name 'argv' is not defined 原因:没有给 main() 函数传入 argv 参数。即便多次跳 阅读全文
posted @ 2022-12-02 14:39 悟透 阅读(269) 评论(0) 推荐(0)
摘要: 原文:https://mp.weixin.qq.com/s/Mm1NFoyz7gy5QtionKLq9w 可以很肯定地说,find 命令是 Linux 后台开发人员必须熟知的操作之一,除非您使用的是 Windows Server。 对于技术面试,它也是一个热门话题。让我们看一道真题: 如果你的 Li 阅读全文
posted @ 2022-11-18 10:30 悟透 阅读(110) 评论(0) 推荐(0)
摘要: NotepadNext 项目地址:https://github.com/dail8859/NotepadNext/ 下载 .AppImage 文件: https://github.com/dail8859/NotepadNext/releases/tag/v0.5.5 使用: 启动 .AppImag 阅读全文
posted @ 2022-11-09 14:21 悟透 阅读(1470) 评论(0) 推荐(0)
上一页 1 ··· 68 69 70 71 72 73 74 75 76 ··· 95 下一页