【Python】Learn Python the hard way, ex5 格式化字符串

本文详细介绍了个人属性的描述方式,包括身高、体重、眼睛颜色、头发颜色、牙齿颜色等,并通过代码展示了如何进行简单的数学计算。同时,分享了如何在Python中使用字符串格式化方法来展示这些属性。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

my_name = 'Gao'
my_age = 31 # not a lie
my_height = 174 # cm
my_weight = 80 # kg
my_eyes = 'Black'
my_teeth = 'White'
my_hair = 'Black'

print "Let's talk about %s." % my_name
print "He's %d cm tall." % my_height
print "He's %d kg heavy." % my_weight
print "Actually that's not too heavy."
print "He's got %s eyes and %s hair." % (my_eyes, my_hair)
print "His teeth are usually %s depending on the coffee." % my_teeth

# this line is tricky, try to get it exactly right
print "If I add %d, %d, and %d I get %d." % (
    my_age, my_height, my_weight, my_age + my_height + my_weight)
    
'''
Test Result:
Let's talk about Gao.
He's 174 cm tall.
He's 80 kg heavy.
Actually that's not too heavy.
He's got Black eyes and Black hair.
His teeth are usually White depending on the coffee.
If I add 31, 174, and 80 I get 285.
'''


心得:

格式化字符串之前用得不多,今后可以多使用


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值