print("hello cc")
#单行注释
# ctrl? 快速注释
# print("hello world")
#多行注释开头结尾用双引号或单引号
'''
# ctrl? 快速注释
# print("hello world")
'''
#声明变量
name="jack"
age=18
hobby="ball"
#使用变量
print("信息",name,age,hobby)
#数据类型
#int none空值 str 字符串 float 浮点型/小数点
a=5
b=128
print(a*2+b+5)
c="您好上海"
D="您好北京"
print(c+D)
#bool 布尔类型 T、F一定要大写
e=True
f=False
print(5>3)
#None 空
n=None
#获取一个数据的类型
print(type(n))
#拼接字符串 +只能拼接str,不能拼接int
Q=c+D
print(Q)
#拼接字符串 +只能拼接str,不能拼接int,函数拼接 {}=占位符
#s2的方式是可以进行位置互换,占位符内只能用字母
s1="hello{0}{1}".format("您好",888)
print(s1)
print(s2)
#转义字符,表达特殊意义的字符
print(s1,s2)
#换行\n \t制表符
s3="换行字符\n转到第二行"
s4="换行字符\t\t\t转到第二行"
print(s3)
print(s4)
#取消转义 添加r
print(s5)
#数据类型转换 int() float() str() bool()
int1="565"
nint2=int(int1)
print(nint2+5)
print(type(int1))
#数据类型转换float()
int2="565.5"
nint3=float(int2)
print(nint3+0.5)
#接收键盘输入
#左边是接收用户数据的变量=input("提示语句"),中间不要加,号
#input默认解析为str
money=int(input("请输入您的银行存款:"))
print("您的银行存款是:",money)
print("明年存款变成:",money*1.08)
领取专属 10元无门槛券
私享最新 技术干货