每道题50分,4个新人(此4人目前已淘汰)最好成绩70分:题目不难,但是老人如果不会,会比较丢人,请大家周末思考一下.1.有如下一个三层dict,请将其转换为能被excel读取的csv文件,注意编码,并实现从csv转为dict。 dict_corp = { 'cn':{'id':1,'name':'...
分类:
编程语言 时间:
2014-09-23 20:28:05
阅读次数:
659
python 遍历字典几种方法脚本:#!/usr/bin/python dict={"a":"apple","b":"banana","o":"orange"} print "##########dict######################" for i in dict: ...
分类:
编程语言 时间:
2014-09-23 19:12:15
阅读次数:
308
一、字典(dict)(1)字典将数据值与键关联。键,字典中的查找部分;值,字典中的数值部分。(2)字典的创建:方式一,myset={};方式二,myset=dict()。(3)字典不会维持插入的顺序,字典通过关键字引用。二、类(1)每个类都有一个特殊方法,名为__init__(),控制如何初始化对象...
分类:
编程语言 时间:
2014-09-23 02:02:03
阅读次数:
194
Given a string s and a dictionary of words dict, determine if s can be segmented into a space-separated sequence of one or more dictionary words.
For example, given
s = "leetcode",
dict = ["leet"...
分类:
其他好文 时间:
2014-09-22 12:40:12
阅读次数:
184
1,judgment in deciding(if...:,if..else:,if else...else:),loop(for...:,while True...:)break,continue;2,搞定python内置核心类型tuple(以下标数据序索引数据,元素不可更改),dict{与tup...
分类:
编程语言 时间:
2014-09-20 15:18:47
阅读次数:
276
#-*-coding:utf-8-*- #1、字典dict = {'name': 'Zara', 'age': 7, 'class': 'First'}#字典转为字符串,返回: {'age': 7, 'name': 'Zara', 'class': 'First'}print type(str(di...
分类:
编程语言 时间:
2014-09-19 22:23:16
阅读次数:
302
从socket模块学习中的一段奇怪代码说起前言:在学习python标准库中的Socket模块中,发现了一段奇怪的代码。import socketdef get_constants(prefix):dicts=dict((getattr(socket,n),n) for n in dir(soc...
分类:
编程语言 时间:
2014-09-17 23:08:32
阅读次数:
478
python3.0以上,print函数应为print(),不存在dict.iteritems()这个函数。在python中写中文注释会报错,这时只要在头部加上# coding=gbk即可#字典的添加、删除、修改操作dict = {"a" : "apple", "b" : "banana", "g" ...
分类:
编程语言 时间:
2014-09-17 20:14:52
阅读次数:
389
Given a string s and a dictionary of words dict, add spaces in s to construct a sentence where each word is a valid dictionary word.Return all such po...
分类:
其他好文 时间:
2014-09-14 12:41:37
阅读次数:
223
// 算法:DFS// 递归函数参数使用引用//Time Limit Exceeded 1 class Solution { 2 public: 3 vector > findLadders( string start, string end, unordered_set &dict) { ...
分类:
其他好文 时间:
2014-09-14 11:18:47
阅读次数:
154