上一页 1 ··· 97 98 99 100 101 102 103 104 105 ··· 313 下一页
摘要: Python 3 Tutorial Python is a general-purpose interpreted, interactive, object-oriented, and high-level programming language. It was created by Guido 阅读全文
posted @ 2022-01-27 20:04 emanlee 阅读(64) 评论(0) 推荐(0)
摘要: 官方文档: https://docs.python.org/3/tutorial/index.html 推荐: https://www.tutorialspoint.com/python3/index.htm https://www.tutorialspoint.com/python/index.h 阅读全文
posted @ 2022-01-27 09:15 emanlee 阅读(119) 评论(0) 推荐(0)
摘要: Python 在线编译器 https://www.onlinegdb.com/online_python_interpreter https://www.programiz.com/python-programming/online-compiler/ https://www.online-pyth 阅读全文
posted @ 2022-01-27 09:08 emanlee 阅读(10171) 评论(0) 推荐(0)
摘要: 键盘上所有特殊符号的英文读法 ! 叹号 exclamation mark/bang /ˌekskləˈmeɪʃn mɑːk/ ? 问号 question mark , 逗号 comma英 /ˈkɒmə/ 美 /ˈkɑːmə/ . 点号 dot/period/point : 冒号 colon英 /ˈk 阅读全文
posted @ 2022-01-26 21:39 emanlee 阅读(16820) 评论(0) 推荐(1)
摘要: 脱字符 ^脱字符: 某个字"打落了", 要在这个中间把打落了的字插入进去, 就是使用的这个符号, 也叫 插入符号。 而 脱字符 的本义是要插入字符, 所以它也可以叫"光标", 也就是单词 caret . 阅读全文
posted @ 2022-01-26 21:36 emanlee 阅读(471) 评论(0) 推荐(0)
摘要: 多重继承,多继承 多重继承代码示例: ### ref https://zhuanlan.zhihu.com/p/97995434 class A: def func1(self): print("in A func1") def func2(self): print("in A func2") cl 阅读全文
posted @ 2022-01-25 22:22 emanlee 阅读(218) 评论(0) 推荐(0)
摘要: python点击按钮弹出新窗口(多个窗口的打开与关闭) 本篇博客对应的视频讲解:https://www.bilibili.com/video/BV1NZ4y1Z7ue/ 用 designer.exe 做UI文件(第一个主窗口) mymainwindow.ui <?xml version="1.0" 阅读全文
posted @ 2022-01-25 20:42 emanlee 阅读(8320) 评论(1) 推荐(0)
摘要: 代码字体,文字大小 设置菜单字体大小 修改工程文件列表的名字的字体大小,以及文件列表的背景颜色,工具栏字体大小,任务栏的字体大小 效果如下: 阅读全文
posted @ 2022-01-24 16:52 emanlee 阅读(344) 评论(0) 推荐(0)
摘要: Python 全局变量 局部变量就是定义在一个函数体内部的变量全局变量是定义在外面的变量 a = 1 # 全局变量是定义在函数、类外面的变量 def f(): b = 2 # 局部变量 print(a) # 全局变量 引用全局变量 a = 1 # 全局变量a 是定义在函数、类外面的变量 print( 阅读全文
posted @ 2022-01-23 09:33 emanlee 阅读(4632) 评论(0) 推荐(0)
摘要: ### ftp登陆连接 ### from ftplib import FTP #加载ftp模块 ftp=FTP() #设置变量 ftp.set_debuglevel(2) #打开调试级别2,显示详细信息 ftp.connect("myIP", port=21) #连接的ftp sever和端口 ft 阅读全文
posted @ 2022-01-21 19:37 emanlee 阅读(812) 评论(0) 推荐(0)
上一页 1 ··· 97 98 99 100 101 102 103 104 105 ··· 313 下一页