惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
V2EX
小众软件
小众软件
GbyAI
GbyAI
B
Blog RSS Feed
月光博客
月光博客
A
About on SuperTechFans
Microsoft Security Blog
Microsoft Security Blog
Blog — PlanetScale
Blog — PlanetScale
U
Unit 42
云风的 BLOG
云风的 BLOG
P
Proofpoint News Feed
Recent Announcements
Recent Announcements
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Vercel News
Vercel News
F
Fortinet All Blogs
Apple Machine Learning Research
Apple Machine Learning Research
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
雷峰网
雷峰网
Google DeepMind News
Google DeepMind News
MongoDB | Blog
MongoDB | Blog
Engineering at Meta
Engineering at Meta
aimingoo的专栏
aimingoo的专栏
博客园_首页
G
Google Developers Blog

噜啦 - 序列

序列 元组的基本操作 - 噜啦 序列 元组的基本操作 - 噜啦 序列 列表的基本操作 - 噜啦 序列 列表的基本操作 - 噜啦 序列 字符串基本操作 - 噜啦 序列 字符串 - 噜啦 序列 字符串 - 噜啦
序列 字符串基本操作 - 噜啦
博主: 噜啦 · 2019-09-06 · via 噜啦 - 序列

题目

# 练习二 字符串基本操作

# 1. 定义两个字符串分别为 xyz 、abc
# 2. 对两个字符串进行连接
# 3. 取出xyz字符串的第二个和第三个元素
# 4. 对abc输出10次
# 5. 判断a字符(串)在 xyz 和 abc 两个字符串中是否存在,并进行输出

答案

str1 = 'xyz'
str2 = 'abc'
str3 = str1 + str2
print(str3)
print(str1 + str2)
print(str1[1])
print(str1[2])
print(str2 * 10)
print('a' in str1)
print('a' in str2)

运行

赞赏作者

如果觉得我的文章对你有用,请随意赞赏