码迷,mamicode.com
首页 > 编程语言 > 详细

python-基础入门-2

时间:2017-07-09 23:55:22      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:第一个   调用   nbsp   raw_input   from   called   imp   python   print   

这里介绍两个,相当于c中的scanf函数

第一个raw_input

1 age=raw_input("how old are you ")
2 print "you are %d old." % age

当遇到raw_input 时,程序的运行会中止,弹出括号里的字符串,你输入的值将会赋给前面的变量

 

第二个argv

1 from sys import argv
2 
3 script, name , tall ,weight  = argv
4 
5 print "the script is called:", script
6 print "your name variable is:", name
7 print "your tall variable is:", tall
8 print "your weight variable is:", weight

from ****import***是调用库,以后会经常碰到

argv保存着你在运行变量时输入的参数,将其中的东西给拿出来。

第一个是script,它是这个脚本的名字,随后输入的三个变量分别赋给name,tall,weight。

在运行时,参数跟在脚本名后就行

python-基础入门-2

标签:第一个   调用   nbsp   raw_input   from   called   imp   python   print   

原文地址:http://www.cnblogs.com/hongren/p/7143556.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!