zoukankan      html  css  js  c++  java
  • Exercise 14: Prompting And Passing

    from sys import argv
    script, user_name = argv
    prompt = '> '
    print "Hi %s, I'm the %s script." % (user_name, script)
    print "I'd like to ask you a few questions." print "Do you like me %s?" % user_name
    likes = raw_input(prompt)
    print "Where do you live %s?" % user_name
    lives = raw_input(prompt)
    print "What kind of computer do you have?"
    computer = raw_input(prompt)
    print """
    Alright, so you said %r about liking me.
    You live in %r. Not sure where that is.
    And you have a %r computer. Nice.
    """ % (likes, lives, computer)

    Notice though that we make a variable prompt that is set to the prompt we want, and we give that to raw_input
    instead of typing it over and over. Now if we want to make the prompt something else, we just change it in this one spot
    and rerun the script.

  • 相关阅读:
    html 一号店静态页面
    多线程
    TCP通信
    MySQL连接查询
    Mysql数据库 DDL 数据定义语言
    MySQL数据库 DML 数据操作语言
    java字符流
    java File类
    java变量
    JDK、JRE、JVM的关系
  • 原文地址:https://www.cnblogs.com/hluo/p/4045436.html
Copyright © 2011-2022 走看看