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

推荐订阅源

人人都是产品经理
人人都是产品经理
云风的 BLOG
云风的 BLOG
Blog — PlanetScale
Blog — PlanetScale
GbyAI
GbyAI
WordPress大学
WordPress大学
有赞技术团队
有赞技术团队
I
InfoQ
爱范儿
爱范儿
U
Unit 42
Martin Fowler
Martin Fowler
C
Check Point Blog
小众软件
小众软件
博客园 - Franky
H
Help Net Security
博客园 - 【当耐特】
IT之家
IT之家
B
Blog RSS Feed
Recent Announcements
Recent Announcements
宝玉的分享
宝玉的分享
美团技术团队
Last Week in AI
Last Week in AI
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
S
SegmentFault 最新的问题
MongoDB | Blog
MongoDB | 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)

运行

赞赏作者

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