-
Python 启动简易 HTTP 服务
Python3 python3 -m http.server 7800 Python2 python -m SimpleHTTPServer 7800
2023-03-08, Views: 1354 , Topics: Python
-
面试题:二进制与十进制互相转换
十进制转二进制 方法一:直接调用内置函数bin() print(bin(123)) 方法二:取余 + 地板除 def decimal_to_binary(n):
-
配置 Python3.7.4 免安装版本
配置 Python 免安装版 下载地址:https://www.python.org/downloads 选择免安装版本,下载后解压到指定磁盘。 添加环境变量
2019-10-08, Views: 8346 , Topics: Python
-
Python UnicodeDecodeError: 'gbk' codec can't decode byte 0x80
Python读取文件保存 Traceback (most recent call last): File "D:/test.py", line 2, in
2019-04-18, Views: 4589 , Topics: Python
-
Python 内置函数
ord() 函数 获取字符的整数表示,字符串长度只能为1 >>> ord('A') 65 >>> ord('中') 2001
2019-04-17, Views: 1853 , Topics: Python
-
Python 基础语法
r'' 表示''内部的字符串默认不转义 >>> print('\\\t\\') \ \ >>> print(r'
2019-04-17, Views: 2210 , Topics: Python