Python基本字符格式和运算符

格式化输出


#int ( ) 修改格式类型
#string 字符串
#digit  数字
#float  浮法


#name = input("waht is you name?  ")
#print("Hello " + name)


name = input("Name:")
age = int ( input("Age:") )
job = input("Job:") 
hometown = input("Hometown:")
#print('-----------info to '+name,'-----------')
#print('Name:' +name)
#print('Sge:' +age)
#print('Job:' +job)
#print('Hometown:' +hometown)
#print('-----------end--------------------')
info = '''
---------info to %s--------
Name: %s
Age: %d
Job: %s
Hometown: %s
---------end---------------
''' % (name,name,age,job,hometown)
print(info)




运算符


算数运算
+
-
*
/
%   取模
**  幂
//  取整除


比较运算
==
!= 不等于
<> 不等于
>
<
>=
<=


赋值运算
=
+=
-=
*=
/=
%=
**=
//=


逻辑运算
and
or
not



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值