代码改变世界

笨方法学Python-ex5

2018-03-23 00:18  许默良  阅读(136)  评论(1)    收藏  举报
#!/usr/bin/env python
# -*- coding:utf-8 -*- 
# author:Administrator
# datetime:2018/3/22 17:21
# software: PyCharm
my_name = 'zed a. shaw'
my_age = 30
my_height = 74
my_weight = 180
my_eyes = 'blue'
my_teeth = 'white'
my_hair = 'brown'

print("let's talk about %s" % my_name)
print("he's %d inches tall "%my_height)
print("he's %d pounds heavy"%my_weight)
print("actually that is not 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)
print("if i add %d ,%d , and %d i get %d"%(my_age, my_height, my_weight, my_age+my_weight+my_height))