logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

Python 以mongo格式保存和读取json数据

Python 以mongo格式保存和读取json数据

#数据挖掘#twitter
Python 以txt格式保存和读取json数据

Python 以txt格式保存和读取json数据

#数据挖掘#twitter
Git使用简介

1. Github 注册UsernameUserpasswordgit config --global user.name "hello"git config --global user.email hello@example.com2. 创建Github仓库New repositoryeg. https://github.com/beyondzhou/TestGit.git

#git
Python 实现简单的加减猜结果游戏

#! /usr/bin/env pythonfrom operator import add, subfrom random import randint, choiceops = {'+': add, '-': sub}MAXTRIES = 2def doprob():op = choice('+-')nums = [randint(1,10) for i i

#python
Python 模拟简单的queue

#! /usr/bin/env pythonqueue = []def enQ():queue.append(raw_input('Enter new string: ').strip())def deQ():if len(queue) == 0:print 'Cannot pop from an empty queue!'else:

#python
Python 实现简单的自定义异常类型

#! /usr/bin/env pythonimport os, socket, errno, types, tempfileclass NetworkError(IOError):passclass FileError(IOError):passdef updArgs(args, newarg=None):if isinstance(args, IO

Python 使用list实现简单的堆栈

#! /usr/bin/env pythonstack = []def pushit():stack.append(raw_input('Enter new string: ').strip())def popit():if len(stack) == 0:print 'Cannot pop from an empty stack!'el

#python
自然语言处理(nlp)的主要范畴

文本朗读(Text to speech)/语音合成(Speech synthesis)语音识别(Speech recognition)中文自动分词(Chinese word segmentation)词性标注(Part-of-speech tagging)句法分析(Parsing)自然语言生成(Natural language generation)文本分类(Text categori

Python 实现简单的命名合法性检查

#!/usr/bin/env pythondef identifierChecker():import stringalphas = string.ascii_letters + '_'nums = string.digitsprint 'Welcome to the Identifier Checker v1.0'print 'Test

#python
Python 实现简单的加减算数游戏

#! /usr/bin/env pythonfrom operator import add, subfrom random import randint, choiceops = {'+': add, '-': sub}MAXTRIES = 2def doprob():op = choice('+-')nums = [randint(1,10) for i i

    共 11 条
  • 1
  • 2
  • 请选择