Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

Python 教程

Python 主页 Python 简介 Python 入门 Python 语法 Python 注释 Python 变量 Python 数据类型 Python 数字 Python 类型转换 Python 字符串 Python 布尔值 Python 运算符 Python 列表 Python 元组 Python 集合 Python 字典 Python If...Else Python While 循环 Python For 循环 Python 函数 Python Lambda Python 数组 Python 类/对象 Python 继承 Python 迭代器 Python 多态 Python 作用域 Python 模块 Python 日期 Python 数学 Python JSON Python 正则表达式 Python PIP Python Try...Except Python 用户输入 Python 字符串格式化

文件处理

Python 文件处理 Python 读取文件 Python 写入/创建文件 Python 删除文件

Python 模块

NumPy 教程 Pandas 教程 SciPy 教程 Django 教程

Python Matplotlib

Matplotlib 简介 Matplotlib 入门 Matplotlib Pyplot Matplotlib 绘图 Matplotlib 标记 Matplotlib 线 Matplotlib 标签 Matplotlib 网格 Matplotlib 子图 Matplotlib 散点图 Matplotlib 条形图 Matplotlib 直方图 Matplotlib 饼图

机器学习

入门 平均数 中位数 众数 标准差 百分位数 数据分布 正态数据分布 散点图 线性回归 多项式回归 多元回归 缩放 训练/测试 决策树 混淆矩阵 层次聚类 逻辑回归 网格搜索 分类数据 K-means Bootstrap Aggregation 交叉验证 AUC - ROC 曲线 K-近邻

Python MySQL

MySQL 入门 MySQL 创建数据库 MySQL 创建表 MySQL 插入 MySQL 选择 MySQL Where MySQL 排序 MySQL 删除 MySQL 删除表 MySQL 更新 MySQL 限制 MySQL 连接

Python MongoDB

MongoDB 入门 MongoDB 创建数据库 MongoDB 集合 MongoDB 插入 MongoDB 查找 MongoDB 查询 MongoDB 排序 MongoDB 删除 MongoDB 删除集合 MongoDB 更新 MongoDB 限制

Python 参考

Python 概述 Python 内置函数 Python 字符串方法 Python 列表方法 Python 字典方法 Python 元组方法 Python 集合方法 Python 文件方法 Python 关键字 Python 异常 Python 术语表

模块参考

随机模块 请求模块 统计模块 数学模块 cMath 模块

Python 如何

移除列表重复项 反转字符串 加两个数

Python 示例

Python 示例 Python 编译器 Python 练习 Python 测验 Python 服务器 Python 面试问答 Python 集训营 Python 证书

Python 字符串


字符串

Python 中的字符串用单引号或双引号括起来。

'hello'"hello" 相同。

可以使用 print() 函数显示字符串文字。

示例

print("Hello")
print('Hello')
自己试试 »

引号内的引号

只要引号不与包围字符串的引号匹配,就可以在字符串中使用引号。

示例

print("It's alright")
print("He is called 'Johnny'")
print('He is called "Johnny"')
自己试试 »

将字符串赋予变量

将字符串赋予变量是通过变量名后跟等号和字符串来完成的。

示例

a = "Hello"
print(a)
自己试试 »

多行字符串

可以使用三个引号将多行字符串赋予变量。

示例

可以使用三个双引号。

a = """Lorem ipsum dolor sit amet,
consectetur adipiscing elit,
sed do eiusmod tempor incididunt
ut labore et dolore magna aliqua."""
print(a)
自己试试 »

或三个单引号。

示例

a = '''Lorem ipsum dolor sit amet,
consectetur adipiscing elit,
sed do eiusmod tempor incididunt
ut labore et dolore magna aliqua.'''
print(a)
自己试试 »

注意:在结果中,换行符将插入到与代码中相同的位置。



字符串是数组

与许多其他流行的编程语言一样,Python 中的字符串是表示 Unicode 字符的字节数组。

但是,Python 没有字符数据类型,单个字符只是一个长度为 1 的字符串。

可以使用方括号访问字符串中的元素。

示例

获取位置 1 处的字符(记住第一个字符的位置是 0)

a = "Hello, World!"
print(a[1])
自己试试 »

遍历字符串

由于字符串是数组,因此可以使用 for 循环遍历字符串中的字符。

示例

遍历单词 "banana" 中的字母

for x in "banana"
  print(x)
自己试试 »

在我们的 Python For 循环 章节中了解更多关于 For 循环的信息。


字符串长度

要获取字符串的长度,可以使用 len() 函数。

示例

len() 函数返回字符串的长度。

a = "Hello, World!"
print(len(a))
自己试试 »

检查字符串

要检查字符串中是否存在某个短语或字符,可以使用关键字 in

示例

检查以下文本中是否存在 "free"

txt = "The best things in life are free!"
print("free" in txt)
自己试试 »

if 语句中使用它

示例

仅当存在 "free" 时打印

txt = "The best things in life are free!"
if "free" in txt
  print("Yes, 'free' is present.")
自己试试 »

在我们的 Python If...Else 章中了解更多关于 If 语句的信息。


检查是否不包含

要检查某个短语或字符是否不存在于字符串中,我们可以使用关键字 not in

示例

检查“expensive”是否不存在于以下文本中

txt = "The best things in life are free!"
print("expensive" not in txt)
自己试试 »

if 语句中使用它

示例

仅当“expensive”不存在时打印

txt = "The best things in life are free!"
if "expensive" not in txt
  print("不,'expensive' 不存在。")
自己试试 »


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.