字符串:str类型
1.查看类型 type()
2.接收输入数据 input()
3.input接收的数据为str 字符串类型。
------- 字符串可以采用,单引号、双引号、三引号(单、双)-
-------字符串格式化输出%s ,或者加 f
-------转义字符\
a = "hello world"
print(a)
print(type(a))
b = 'tom'
print(b)
print(type(b))
三引号字符可以换行书写
c = '''wo shi zuole'''
print(c)
print(type(c))
d = """I love
you"""
print(d)
print(type(d))
f = 'i'M TOM'
print(f)
print('hello world')
name = 'zuole'
age = 19
我的名字是tom
print('我的名字是%s' %name)
print(f'我的名字是{name}')
print('我的年龄是%d' %age, f'明年的年龄是{age+1}')
字符的输入
password1 = input('请输入您的密码:')
print(f'您输入的密码是{password1}')
print(type(password1))