美文网首页
编程小白的《笨办法学Python》学习笔记day4

编程小白的《笨办法学Python》学习笔记day4

作者: 北宁 | 来源:发表于2016-05-07 23:48 被阅读48次

    习题 5: 更多的变量和打印

    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)

     

    相关文章

      网友评论

          本文标题:编程小白的《笨办法学Python》学习笔记day4

          本文链接:https://www.haomeiwen.com/subject/pxdsrttx.html