【笔记】Python学习记录

Python学习记录

Hello World

老调调了,如何在终端输出信息呢?

python 复制代码
print("Hello World")
bash 复制代码
Hello World

变量

变量命名遵从代码变量命名通则,几乎所有的语言都是这一套规则,就算不是的也可以用这一套规则。

  • 仅包含字母、数字和下划线。不能以数字开头。
  • 不能包含空格。
  • 不要用关键字和函数名。
  • 要简短且有效。
  • 慎用小写字母l和大写字母O。

就目前而言,应使用小写的 Python 变量名。虽然在变量名中使用大写字母 不会导致错误,但大写字母在变量名中有特殊的含义,这将在本书后面讨论。

python 复制代码
message = "hello world"
print(message)

简单数据类型

字符串

可以用单引号,也可以用双引号。

大小写转换

title upper lower
首字母大写 全大写 全小写
python 复制代码
name = "wang leiLEI"
print(name)
print(name.title())
print(name.upper())
print(name.lower())
bash 复制代码
wang leiLEI
Wang LeiLEI
WANG LEILEI
wang leilei

插入变量

python 复制代码
h = "hello"
w = "world"
message = f"{h} {w}"
print(message)

message = f"{h.title()} {w.upper()}"
print(message)
bash 复制代码
hello world
Hello WORLD

Tab和Enter

Tab制表符 Enter回车
\t \n
python 复制代码
print("hello")
print("\thello") # Tab
print("hel\nlo") # Enter
bash 复制代码
hello
	hello
hello
hel
lo

删除前后空格

前空格 后空格 前后空格
lstrip rstrip strip
python 复制代码
message = " hello world "
print(message)
print(message.rstrip())
print(message)
print(message.lstrip())
print(message)
print(message.strip())
print(message)

上图·就是一个空格。可以看出这3个删除方法是不会影响原字符串的。

删除前后缀

前缀 后缀
removeprefix removesuffix
python 复制代码
url = "http://www.baidu.com"
print(url.removeprefix("http://"))
print(url)
print(url.removesuffix(".com"))
bash 复制代码
www.baidu.com
http://www.baidu.com
http://www.baidu

删除方法不会影响原字符串。

相关推荐
海阔天空_20131 分钟前
Python pyautogui库:自动化操作的强大工具
运维·开发语言·python·青少年编程·自动化
零意@9 分钟前
ubuntu切换不同版本的python
windows·python·ubuntu
准橙考典13 分钟前
怎么能更好的通过驾考呢?
人工智能·笔记·自动驾驶·汽车·学习方法
思忖小下20 分钟前
Python基础学习_01
python
hong16168822 分钟前
跨模态对齐与跨领域学习
学习
q567315231 小时前
在 Bash 中获取 Python 模块变量列
开发语言·python·bash
是萝卜干呀1 小时前
Backend - Python 爬取网页数据并保存在Excel文件中
python·excel·table·xlwt·爬取网页数据
代码欢乐豆1 小时前
数据采集之selenium模拟登录
python·selenium·测试工具
阿伟来咯~1 小时前
记录学习react的一些内容
javascript·学习·react.js
Suckerbin1 小时前
Hms?: 1渗透测试
学习·安全·网络安全