# 字符串: 就是一串字符,也就是说是一个字符的集合,通俗理解带有引号的数据成为字符串
# 字符串属于容器类型
# 字符串的表现形式4种
# 1. 单引号字符串
# 2. 双引号字符串
# 3. 三个单引号字符串
# 4. 三个双引号字符串
my_str1 = 'hi python'
print(my_str1, type(my_str1))
my_str2 = "hello python"
print(my_str2, type(my_str2))
my_str3 = '''hello
python'''
print(my_str3, type(my_str3))
my_str4 = """你好
字符串"""
print(my_str4, type(my_str4))
# 总结:
# 字符串中的内容只有一行数据,则使用单引号字符串或者双引号字符串都可以
# 字符串中的内容如果有多行数据,则使用三引号字符串。
print("'hi'")
'''
hi python <class 'str'>
hello python <class 'str'>
hello
python <class 'str'>
你好
字符串 <class 'str'>
'hi'
进程已结束,退出代码0
'''