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

推荐订阅源

aimingoo的专栏
aimingoo的专栏
宝玉的分享
宝玉的分享
博客园 - 【当耐特】
博客园 - 司徒正美
L
LangChain Blog
有赞技术团队
有赞技术团队
大猫的无限游戏
大猫的无限游戏
Stack Overflow Blog
Stack Overflow Blog
Engineering at Meta
Engineering at Meta
U
Unit 42
Microsoft Azure Blog
Microsoft Azure Blog
I
InfoQ
博客园 - 叶小钗
H
Hackread – Cybersecurity News, Data Breaches, AI and More
J
Java Code Geeks
月光博客
月光博客
量子位
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园_首页
Last Week in AI
Last Week in AI
人人都是产品经理
人人都是产品经理
Google DeepMind News
Google DeepMind News
云风的 BLOG
云风的 BLOG
D
DataBreaches.Net

噜啦 - 序列

序列 元组的基本操作 - 噜啦 序列 元组的基本操作 - 噜啦 序列 列表的基本操作 - 噜啦 序列 列表的基本操作 - 噜啦 序列 字符串基本操作 - 噜啦 序列 字符串 - 噜啦 序列 字符串 - 噜啦
序列 字符串基本操作 - 噜啦
博主: 噜啦 · 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)

运行

赞赏作者

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