码迷,mamicode.com
首页 >  
搜索关键字:raw_input    ( 787个结果
Beginning Python From Novice to Professional (5) - 条件与循环
条件与循环 条件执行: name = raw_input('What is your name? ') if name.endswith('Gumby'): print 'Hello, Mr.Gumby'What is your name? Gumby Hello, Mr.Gumbyname = raw_input('What is your name? ') if name.endswit...
分类:编程语言   时间:2014-11-12 19:50:03    阅读次数:245
python中raw_input输入数字问题
如果按照下面方式,则无论你输入什么,都会打印12,因为raw_input接受的输入是按照字符串处理的num = raw_input('please enter a num:')if num > 10: print 12else: print -abs(int(num))需要改成下面的写法...
分类:编程语言   时间:2014-11-08 18:11:46    阅读次数:251
Python 判断质数
a = raw_input() #输入数字a = int(a) #强制转换成intb=True #一个标记for i in range(2,a): #从2开始循环本身 if a%i==0: #如果除了本身和1以外还能被整除 b=False #标记改成False br...
分类:编程语言   时间:2014-11-07 09:48:50    阅读次数:112
练习python
Codeforces Round #276 (Div. 2) A. Factory链接http://codeforces.com/contest/485/problem/A我刚学python,刚好用这道水题练习一下python的输入和list的使用输入用到了map(int, raw_input()....
分类:编程语言   时间:2014-11-06 23:24:43    阅读次数:232
python
退出python命令行exit()从python程序中正常退出:引包-importsys在需要退出的地方输入-sys.exit()打印提示信息printxxxx与用户交互raw_input("xxxx")输出一段常量中包含一个变量的值‘‘‘name:%s‘‘‘%name包含变量的值‘‘‘name:%ssex:%sage:%d‘‘‘%(name,sex,age)列表list常用函数..
分类:编程语言   时间:2014-11-04 15:14:27    阅读次数:231
python 3.x 不再提供raw_print()
python 3.x 不再提供raw_input(), 改为使用input(), print 改为 print(),print 无括号形式不能再使用.>>> raw_input('input name:');Traceback (most recent call last): File "", li...
分类:编程语言   时间:2014-11-02 17:49:06    阅读次数:217
ZOJ1969-Hard to Believe, but True!
1 import re 2 while True: 3 x = raw_input() 4 if(x == '0+0=0'): 5 print 'True' 6 break 7 a,b,c = re.split('[+=]', x) 8 ...
分类:其他好文   时间:2014-11-02 00:27:55    阅读次数:158
Python语言之控制流(if...elif...else,while,for,break,continue)
1.if...elif...else... 1 number = 23 2 guess = int(raw_input('Enter an integer : ')) 3 4 if guess == number: 5 print( 'Congratulations, you guesse...
分类:编程语言   时间:2014-10-28 15:22:41    阅读次数:188
Exercise 35: Branches and Functions
from sys import exitdef gold_room(): print "This room is full of gold. How much do you take?" next = raw_input("> ") if "0" in next or "1" in...
分类:其他好文   时间:2014-10-25 15:45:58    阅读次数:169
Exercise 31: Making Decisions
print "You enter a dark room with two doors. Do you go through door #1 or door #2?"door = raw_input("> ")if door == "1": print "There's a giant bear ....
分类:其他好文   时间:2014-10-24 18:34:08    阅读次数:242
787条   上一页 1 ... 72 73 74 75 76 ... 79 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!