
git
wangst4321
安静地翱翔,有翅膀就应该去飞翔
展开
-
git使用介绍(一)
1. 如何使用GitHub 执行“git remote add origin https://github.com/username/projectname.git",将GitHub的repository链接保存到本地的config中。 对于新建的repository,当执行”git clone https://github.com/username/projectname.git“时,这个链原创 2013-03-14 16:15:55 · 635 阅读 · 0 评论 -
python处理中文字符
1.在py文件中使用中文字符 unicode.py文件内容如下所示: # -*- coding:utf-8 -*- str_ch = '我们women' uni_ch = u'我们women' print "type:", type(str_ch), "content:", str_ch, repr(str_ch) print "type:", type(uni_ch), "conten原创 2013-08-20 18:17:07 · 1601 阅读 · 0 评论