码迷,mamicode.com
首页 >  
搜索关键字:raw_input    ( 787个结果
【Python】入门 list有些不懂
#-*- coding: cp936 -*- #首行加这个 代码里就可以加注释raw_input("Press Enter Exit") #最后一行加这个,可以直接点击脚本运行脚本l[a:b] = [c] #即用右边的[c]完全替换a到b-1个元素http://www.cnblogs.com/zhe...
分类:编程语言   时间:2014-07-22 23:14:54    阅读次数:369
python学习笔记-抓取网页图片脚本
初学者一枚,代码都是模仿网上的。亲测可用~运行脚本的前提是本机安装了httplib2模块#!/usr/bin/python importos importre importstring importurllib #author:reed #date:2014-05-14 defGetWebPictures(): url=raw_input(‘pleaseinputthewebsiteyouwanttodownload:‘) imgconte..
分类:编程语言   时间:2014-05-15 09:03:42    阅读次数:385
hackerrank---Find a string
题目链接在字符串a中查找字符串b出现的次数...貌似不可以用a.count()附上代码:1 a = raw_input().strip()2 b = raw_input().strip()3 cnt = 0;4 for i in xrange(len(a)):5 cnt += 1 if a....
分类:其他好文   时间:2014-05-14 04:13:06    阅读次数:308
hackerrank---Sets - Symmetric Difference
题目链接集合操作附上代码:1 M = int(input())2 m = set(map(int, raw_input().strip().split()))3 N = int(input())4 n = set(map(int, raw_input().strip().split()))5 tmp...
分类:其他好文   时间:2014-05-14 03:33:12    阅读次数:289
Python重写C语言程序100例--Part2
'''题目:输入某年某月某日,判断这一天是这一年的第几天? 1.程序分析:以3月5日为例,应该先把前两个月的加起来,然后再加上5天即本年的第几天,特殊       情况,闰年且输入月份大于3时需考虑多加一天。 2.程序源代码: ''' year = int(raw_input('year:\n')) month = int(raw_input('month:\n')) day = int(raw_...
分类:编程语言   时间:2014-05-06 21:27:14    阅读次数:465
笨方法学python(5)加分题
这篇对应的是习题16,读写文件 # -*- coding: utf-8 -*- #对文件更多操作复制A文件的内容到B文件 #from sys import argv from os.path import exists prompt = "> " from_file = raw_input("please input the filename where you want to copy...
分类:编程语言   时间:2014-05-05 12:54:02    阅读次数:402
Keyboard input
Keyboard inputPython provides a build-in function called raw_input (in version 2.x) that gets input from the keyboard. In Python 3.x we use input(). W...
分类:其他好文   时间:2014-05-01 19:23:26    阅读次数:392
787条   上一页 1 ... 77 78 79
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!