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_input(), 改为使用input(), print 改为 print(),print 无括号形式不能再使用.>>> raw_input('input name:');Traceback (most recent call last):File "", lin...
分类:
编程语言 时间:
2015-01-05 18:33:00
阅读次数:
207
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
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
题目大意:求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,两个练习的小例子,也是看书上写的,非常简单,感觉有点用**********写文件**********#_*_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
一、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
简单的实例:写输入内容到创建的文件中: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