今天给一个小程序写后台,通过调用百度翻译API实现翻译功能。
调用百度API的url为'http://openapi.baidu.com/public/2.0/translate/dict/simple?client_id=你的KEY&q=要查的汉语&from=zh&to=en';
申请步骤详见点击打开链接
以上是前期准备工作
===============================...
在sys用户下执行:CREATE OR REPLACE TRIGGER lms2014BEFORE create or DROP OR ALTER ON databaseDECLAREBEGINIF ora_dict_obj_owner = 'LMS2014' AND ora_sysevent = ...
分类:
数据库 时间:
2015-01-26 15:05:36
阅读次数:
194
import urllib.requesturl = 'site'headers = {'Authorization' : 'Basic emVkMHg6WWJyYm5mMDA='}req = urllib.request.Request(url, headers)response = urllib...
分类:
Web程序 时间:
2015-01-26 11:51:43
阅读次数:
422
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, givens = "leetcode",dict = ["leet", "code"...
分类:
其他好文 时间:
2015-01-23 13:21:09
阅读次数:
131
题目:
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 possible sentences.
For example, given...
分类:
编程语言 时间:
2015-01-20 22:22:42
阅读次数:
241
Python的数据结构主要分为set(),list[],和dict{}。这篇文章主要记载这几种结果在使用过程中的一些技巧或其中一些函数的用法区别。1.函数get()与setdefault()区别: get()方法提供默认值(不设置默认为None Type),不会为字典对象添加key; setdefa...
分类:
编程语言 时间:
2015-01-20 13:38:51
阅读次数:
158
字典是Python中唯一的映射类型。所谓映射即指该数据类型包含哈希值(key)和与之对应的值(value)的序列。字典是可变类型。字典中的数据是无序排列的。4.1.1字典的创建及赋值dict1={}dict2={'name':John,'age':24}使用dict()函数创建字典。dict()函数...
分类:
编程语言 时间:
2015-01-20 06:11:50
阅读次数:
273
NSDictionary * dict=[NSDictionary dictionaryWithObject:self.navigationController.navigationBar.tintColor forKey:NSForegroundColorAttributeName];//(字体:NSFontAttributeName)
self.navigationControlle...
分类:
移动开发 时间:
2015-01-19 15:44:21
阅读次数:
191
python把文件中的邮箱分类保存到相应的文件里面(测试数据100W数据时间10秒)#coding:utf-8
importtime
importlinecache
defreadfile(file):
#读取数据
list_dict={}
file_data=[x.replace(‘\n‘,‘‘)forxinlinecache.getlines(file)if‘@‘inx]
#把后缀名组成字典中的keys,按照..
分类:
编程语言 时间:
2015-01-19 06:57:53
阅读次数:
202
创建个子字典 用大括号 {}字典是包括 key 和valued = { 'Adam': 95, 'Lisa': 85, 'Bart': 59}print 'Adam:',d.get('Adam')print 'Lisa:',d.get('Lisa')print 'Bart:',d....
分类:
其他好文 时间:
2015-01-18 13:03:46
阅读次数:
234