字符串连接 name = '' +''
空白字符
直接空格 制表符ta'b
字符串连接 name = '' +''
空白字符
直接空格 制表符ta'b
.title() 方法单词首字母大写 空格区分
.upper()字母变大写
.lower()字母小写
字符串类型
m='hellow word'
\转义字符
作用
变量存储数据
可以变化
数据类型,变量
print(stu.item()) //以元组方式输出键值对
for a,b in stu.items():
print(a,b) //遍历输出键和值
print()
换行
x = 2//4
两个斜杠表示去除小数,保留整数
x = y%z
求模,即取余
x = y**z
次方运算,z次方
x.lstrip()
x.rstrip()
x.strip()
变量可以以下划线开头
命名可以包括字母,数字和“下划线”
str.lstrip() # 去左边的空格
str.rstrip() # 去右边的空格
str.strip() # 去两边的空格
如何更快速的运行 python 代码
配置 notepad++
cmd /k python.exe "$(FULL_CURRENT_PATH)"& PAUSE & EXIT
保存
cmd /k python "$(FULL_CURRENT_PATH)"& PAUSE & EXIT
百度搜索:“notepad++ python运行”
https://jingyan.baidu.com/article/d5a880eb8ce81813f047cc4b.html
Mac OS 下下载 Python 环境
下载 mac 版 python
编辑器使用 Sublime Text
https://www.jianshu.com/p/097362dcdea3
桌面上:HelloWorld.py
C:\Users\souke\Desktop>python helloworld.py
HelloWorld
C:\Users\souke\Desktop>
C:\Users\souke\Desktop>python helloworld.py
File "hellowrold.py", line 1
SyntaxError: Non-UTF-8 code starting with '\xal' in file hellowrold.py on line 1, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details
C:\Users\souke\Desktop>
print("你好,python世界")
支持中文,需要更改编码格式:
格式---转为 UTF-8 编码格式
文件扩展名
HelloWorld.py
print("Hello World")
C:\Users\souke>python HelloWorld.py
python can't open file 'HelloWorld.py' : [Errno 2] No such file or directory
C:\Users\souke>cd Desktop
C:\Users\souke\Desktop>python HelloWorld.py
Hello World
C:\Users\souke\Desktop>cd C:\Users\souke\Desktop
C:\Users\souke\Desktop>
>>>print("Hello World")
Hello World
>>>
集成开发环境(IDE,Integrated Development Environment )是用于提供程序开发环境的应用程序,一般包括代码编辑器、编译器、调试器和图形用户界面等工具。
Notepad++官网:
https://notepad-plus-plus.org/
下载Notepad++
https://notepad-plus-plus.org/downloads/
下载 Notepad++ v7.8.2 页面
python官网:
下载Python 3.8
https://www.python.org/downloads/release/python-380/
https://www.python.org/ftp/python/3.8.0/python-3.8.0.exe
Install Python 3.8.0(32-bit)
打勾选项:
Install launcher for all users (recommended)
Add python 3.8 to PATH
Setup was successful
Disable path length limit
Changes your machine configuration to allow programs,including Python,to bypass the 260 character "MAX_PATH" limitation.
Close
C:\Users\souke\python
Python 3.8.0 (tags/v3.8.0:fa919fd,Oct 14 2019,19:21:23) [MSC v.1916 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>>
Windows键 + R键,调用出 运行
exit() 退出python命令行
在 Windows 下搭建 Python 编程环境
1,检查是否已经安装 Python,如有卸载 Python
2,下载并安装 Python (python.ory)(勾选 add python to path)
3,检查是否安装成功
4,编写 HelloWorld
5,安装 notepad++
len
这里注意缩进
嵌套if语句中后边的if语句都是基于第一个if语句的,所以需要注意缩进