haibaraxx的个人博客分享 http://blog.sciencenet.cn/u/haibaraxx

博文

按标题搜索
Python: check if something is a member of a variable
2016-11-18 16:59
# built-in function - i n country='Deutschland' ' y ' in country False ' a ' in country True 'b' not in country True family= 'bro' in family False &# ...
个人分类: Python|1488 次阅读|没有评论
Python 2: index and change elements of variables
2016-11-18 16:12
family= # index from the very beginning, the sequence of each element is: 0 1 2 3 4 5 ... NOTE it starts from 0 ! family 'mom' family 'sis' family 'dog' list ( family ) # index from backwar ...
个人分类: Python|1603 次阅读|没有评论
Python 2: strings
2016-11-17 23:02
# double or single quotes 'hey yy' 'hey yy' hey yy 'hey yy' he's a handsome man he's a handsome man 'he ' s a handsome man' he's a handsome man 'he sai ...
个人分类: Python|1413 次阅读|没有评论
Python 3: Module math - mathematical functions
2016-11-17 22:35
import math # math.floor(x) returns the floor of x as a float, the largest integer value less than or equal to x. math.floor(9.2) 9.0 # math.sqrt(x) returns the square root of x. math.sqrt(81) 9.0 # math.pow(x,y) returns x raised to the power y ...
个人分类: Python|2588 次阅读|没有评论
Python: operators
2016-11-17 19:17
1+2 3 9-2 7 3*5 15 -2 ** 4 # 乘方 -16 # 除法要注意啦 8/4 2 8/3 2 # python2 2.6666666666666665 # python3 8/3 . (or 8/3 .0 or 8 .0 /3) 2.6666666666666665 ...
个人分类: Python|2286 次阅读|没有评论
Python 2: open a webpage
2016-3-8 04:08
import urllib2 # the urllib2 module defines functions and classes which help in opening URLs (mostly HTTP) in a complex world - basic and digest authentication, redirections, cookies and more. url1 = 'http://www.oldbaileyonline.org/print.jsp?div=t17800628-33' response1 = ur ...
个人分类: Python|1951 次阅读|没有评论
Python 2: read and write from a file
2016-3-8 04:01
# send information to the Command Output print hello world # creat a new file and write it f = open('helloworld.txt','w') # creat a txt file in the working directory. w stands for write. when using w, the program will overwite whatever might ha ...
个人分类: Python|2057 次阅读|没有评论

Archiver|手机版|科学网 ( 京ICP备07017567号-12 )

GMT+8, 2024-5-18 15:16

Powered by ScienceNet.cn

Copyright © 2007- 中国科学报社

返回顶部