【基本数据类型】12、字符串

2021-04-24  本文已影响0人  看远方的星

目录
一、文本的表示
二、字符串和名字的区别
三、常见的字符串操作
四、字符串是一种序列

一、文本的表示

二、字符串和名字的区别

>>>height=8848
>>>mt=everest="珠移朗玛峰"
>>>height
8848
>>>mt
'珠移朗玛峰'
>>>everest
'珠移朗玛峰'
>>>type(height)
<class 'int'>
>>>type(everest)
<class 'str'>

三、常见的字符串操作

>>>a='Hello'    //赋值
>>>a=='Hello'  //判断相等
True
>>>'h' in a
False
>>>'H' in a
True
image.png

四、字符串是一种序列

上一篇 下一篇

猜你喜欢

热点阅读