1.输出 %占位符 s表示数值类型(字符串)d(数值类型)
name='张扬'
classPro='清华附中一年3班'
age=7
print('我的名字是%s:来自【%s】,今年%d岁了'%(name,classPro,age))
name='老夫子'
QQ='66666666'
phone='5024193635'
addr='广州市白云区1'
print('姓名:%s'%name)
print('QQ:%s'%QQ)
print('手机号:%s'%phone)
print('地址:%s'%addr)
print('姓名:{}'.format(name))
print('QQ:{}'.format(QQ))
print('手机号:{}'.format(phone))
print('地址:{} 年龄是{}岁了'.format(addr,23))
name=input('请输入你的姓名:')
QQ=input('请输入你的QQ:')
phone=input('请输入你的电话:')
addr=input('请输入你的地址:')
print('姓名:{}'.format(name))
print('QQ:{}'.format(QQ))
print('手机号:{}'.format(phone))
print('地址:{} 年龄是{}岁了'.format(addr,23))
age=int(input('请输入你的年龄:'))
print('地址:%s,年龄%d岁了'%(addr,age))
3a,b,c,d=23,18,10,
a+=c
print(a)
只运行其中一行代码:选中其余的代码 ,然后 ctrl+/ 注释掉。
and 条件比较严格,所有条件需同时满足
定义四个变量
a,b,c,d=23,18,10,3
print(a+b>c and c<d)
print(c>d and a>b)
or 条件一个为真,结果就为真
print('----or------')
print(a<b or b>d)
print(a<b or b<d)
not 取反 真假切换
print('-----------not--------')
print(not a<b)
print(not a>b)
优先级
()->not->and->or
print(2>1 and 1<4 or 2<3 and 9>6 or 2<4 and 3<2)
%取余,//忽略小数点后的小数位,只保留整数。
"""
多行注释
"""
a=7
b=3
c=10
print(a+b*c)
print(a-b)
print(a*b)
print(a/b)
print(a%b)
print(a//b)
a,b=10,5
print(a==b)
print(a!=b)
print(a>=b)
print(a<=b)
print(a>b)
print(a<b)
b=( )
print(type(b))
c=[]
print(type(c))
d={}
print(type(d))
定义:
变量名=数据
>>> a=2
>>> a
2
>>> id(a)
140725618639152
>>> type(a)
<class 'int'>