age = raw_input("How old are you? ")height = raw_input("How tall are you? ")weight = raw_input("How much do you weigh? ")print "So, you're %r old, %r ...
分类:
其他好文 时间:
2014-10-23 12:21:22
阅读次数:
227
坑爹的黑店maxm=10000v=[150,200,350]t=int(raw_input())for ii in range(0,t): m=int(raw_input()) f=[] for j in range(0,m+1): f.append(m) fo...
分类:
其他好文 时间:
2014-10-22 10:51:27
阅读次数:
140
while True: try: s=raw_input() a,b=s.split(' ') a,b=int(a),int(b) print a+b except EOFError: break
分类:
其他好文 时间:
2014-10-22 08:44:07
阅读次数:
162
题目:codeforces 479B. Towers
题意:给出一个长度 n 的序列,最多可以有 k 次操作,每次选择一个一个最大的减1,最小的加1,然后问在最多k次操作之后的最小差值。
很简单,练习一下python语法
n,k = map(int,raw_input().split())
l = map(int,raw_input().split())
ans = []
...
分类:
编程语言 时间:
2014-10-20 11:45:50
阅读次数:
265
A题1 s = sum(map(int, raw_input().split()))2 print s / 5 if s % 5 == 0 and s / 5 else -1B题1 n, m = map(int, raw_input().split())2 div, lft = n / m, n %...
分类:
其他好文 时间:
2014-10-17 23:14:51
阅读次数:
347
拼接字符串:>>> x="hello">>> y="world">>> x+y'helloworld' 将python值转换为字符串三种方法:str函数把值转换为字符串,repr函数以表达式形式表示值,反引号. raw_input函数会把所有输入当作原始数据放入字符串中.
分类:
编程语言 时间:
2014-10-17 13:37:45
阅读次数:
201
简单介绍一下python里IO的几种常用方式。当然除了以下介绍的几种方式之外,还可以参考python的手册,例如我想查找raw——input函数的用法,我就可以直接使用命令:python -m pydoc raw_input(windows底下)来查看使用方法,使用完毕时候,输入“q”作为退出。下面...
分类:
编程语言 时间:
2014-10-14 13:27:48
阅读次数:
315
星期一,2013年11月4日linux自带python,只要输入python就可以进入编辑器;number=23;guess=int(raw_input('Enter:')) #int转换成整型#raw_input是一个自带函数,键盘输入if number==guess: #if...else语句(...
分类:
编程语言 时间:
2014-10-11 00:21:34
阅读次数:
277
1.Python程序结构:输入-处理-输出输出语句:print()函数format格式化函数format(val,‘m.nf‘)m.nf,m是占位符,例如:print(format(12.243,‘3.2f‘))->_12.24
print(format(0.1245,‘2.2%‘))->12.45%输入语句:raw_input([promot])返回的是字符串re=raw_input()
type(re)-&..
分类:
编程语言 时间:
2014-10-06 02:19:11
阅读次数:
289
#vimraw_input.py#!/usr/bin/pythonname=raw_input(‘Pleaseinputyourname:‘)age=input(‘Pleaseinputyourage:‘)sex=raw_input(‘Pleaseinputyoursex:‘)message=‘‘‘Message:\tname:%s\tage:%d\tsex:%s‘‘‘%(name,age,sex)#printmessage
分类:
编程语言 时间:
2014-09-29 17:01:21
阅读次数:
167