文章列表

1.2k 1 分钟

# 基础 Python 学习 # 0. 前置 # 1. 数据类型 Python3 中有六个标准的数据类型: Number(数字): 支持 int、float、bool、complex(复数) String(字符串): 用单引号 ' 或双引号 " 括起来,同时使用反斜杠 \ 转义特殊字符。 如 \n 打进去会换行,如果不想转义前面加 r: print(r'Ru\noob') 斜杠会原样打出来; 反斜杠 \ 还可以用来续行 字符串不能被改变 string[0] = "a" 会报错 List(列表):使用 []...
578 1 分钟

Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. # Quick Start # Test α\alphaα α\sqrt\alpha α​ # Create a new post $ hexo new "My New...