码迷,mamicode.com
首页 >  
搜索关键字:raw_input    ( 787个结果
Python学习笔记
1. 在python中 ”_"用来表示最后一个表达式的值2.从用户那里得到数据最简单的方法是使用raw_input >>> user=raw_input("Enter your name: ") Enter your name: dahaol3. 从python2开始可以是使用>>来重定向输出结.....
分类:编程语言   时间:2015-01-07 23:28:59    阅读次数:284
python 3.x 不再提供raw_print()
python 3.x 不再提供raw_input(), 改为使用input(), print 改为 print(),print 无括号形式不能再使用.>>> raw_input('input name:');Traceback (most recent call last):File "", lin...
分类:编程语言   时间:2015-01-05 18:33:00    阅读次数:207
Python - syntax errors and exception
1. syntax errors (arrow marks) 2. zero division error, name error, type error. 3. try except     while True:                try:                     x = int(raw_input("Input:"))...
分类:编程语言   时间:2015-01-04 23:10:56    阅读次数:470
Python下实现文件中的全文搜索小测试
username=‘test‘ password=‘123456‘ whileTrue: user_str=raw_input("Pleaseinputyourname>>") pass_str=raw_input("Pleaseinputyourpassword>>") ifusername!=user_strorpassword!=pass_str: print"Sorry,Youinputwrongusernameorpassword!" continue el..
分类:编程语言   时间:2015-01-02 07:32:32    阅读次数:247
BZOJ 2822 AHOI2012 树屋阶梯 卡特兰数
题目大意:求n个矩形搭出n级阶梯的方案数 那个什么空心不能向上完全是逗你的- - 卡特兰数的应用之一- - Wiki上有说- - 具体证明不会- - 总之Python大法好- - n=int(raw_input()) temp=1 for i in range (1,n+1): temp=temp*(4*i-2)/(i+1) print temp...
分类:其他好文   时间:2014-12-31 13:04:45    阅读次数:133
遍历根目录下包含特定字符串的文件
import osimport rename = raw_input("please input the name: ")for dirpath, dirnames, filenames in os.walk(os.path.join('/home/xiao', name), True, None)...
分类:其他好文   时间:2014-12-26 16:20:56    阅读次数:171
通过中国天气网的通用接口查询天气
通过中国天气网的通用接口查询天气。#coding:utf-8import urllib2, jsonfrom city import cityyourcity = raw_input("你想查那个城市的天气?")#yourcity = '杭州'url = "http://www.weather.co...
分类:其他好文   时间:2014-12-25 12:41:33    阅读次数:198
python 读写文件程序
主要最近学习python,两个练习的小例子,也是看书上写的,非常简单,感觉有点用**********写文件**********#_*_coding:UTF-8_*_importosls=os.linesepwhileTrue:fname=raw_input(‘输入文件名:‘)ifos.path.exists(fname):print"ERROR:‘%s‘alreadyexists"%fnameelse:breakall=[]wh..
分类:编程语言   时间:2014-12-24 06:31:17    阅读次数:134
python学习笔记二:流程控制
一、if else:#!/usr/bin/pythonx = int(raw_input('please input:'))if x >= 90: if x >= 95: print 'a+' else: print 'a'elif x >= 80: i...
分类:编程语言   时间:2014-12-22 16:12:37    阅读次数:213
Python 读写文件
简单的实例:写输入内容到创建的文件中:import osls = os.linesep #Win is '\r\n' and Linux is '\n'fileName = raw_input('Please enter your file name here:')while True: ...
分类:编程语言   时间:2014-12-21 00:38:01    阅读次数:213
787条   上一页 1 ... 70 71 72 73 74 ... 79 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!