Learn Python The Hard Way(5)

  本节学习python中变量的格式化输出

#!/usr/bin/env python
# -*- coding: utf-8 -*-

my_name = 'Zed A. Shaw'
my_age = 35 # not a lie
my_height = 74 # inches
my_weight = 180 # lbs
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'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 )

运行结果:

                    Learn Python The Hard Way(5)_第1张图片

   代码中 %d:输出整型数据,%s:输出字符串型数据

你可能感兴趣的:(Learn Python The Hard Way(5))