码迷,mamicode.com
首页 > 编程语言 > 详细

python基础教程笔记 第1单元 && 第2单元

时间:2015-03-04 20:59:53      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:

1.
http://docs.python.org/dev/3.0/whatsnew/3.0.html
python-announce-list
python-help
2.
交互式编译器
3.
非整数除法
.1.
>>> from__future__import division
SyntaxError: invalid syntax
.2.Linux -Qnew
4.
整数除法 // 就算是浮点数也会执行整除
取余 2.75%0.5
幂运算符 ** (pow(base,times[mod]))
幂运算符比取反等级高
round() 约为整数
abs() 绝对值
math.floor()
math.ceil(()
5.
八进制 010表达被取消
6.
print() print被改为函数
7.
x=input("The meaning of life ")
raw_input: raw_data
8.
if 1==2:
9.
内建函数
调用函数
10.
import math
from math import sqrt
foo = math.sqrt ; foo(4)
11.
>>> sqrt(-1)
Traceback (most recent call last):
File "<pyshell#23>", line 1, in <module>
sqrt(-1)
NameError: name ‘sqrt‘ is not defined
12.
>>> cmath.sqrt(-1)
1j
13.
__future__
14.
#! /usr/bin/env python
or
#! /usr/bin/python2
15.
chmod a+x hello.py
16.
comment #
Thou shalt comment
17.
string
自动拼接
"",‘‘,‘‘‘‘‘‘(长),""""""(长) 分隔
str1 + str2
str():把值转换成合理形式的字符串
repr():以合法python表达式方式展示(or ``(反引号)python3.0 中不再使用)
18.
raw_input(‘PRESS<ENTER>‘)
.pyw格式则无反应
19.
print r‘c:\‘
原始字符串
20.
unicode字符串
u‘c\:‘
21.
int(object)
long(object)
help()


2.1
sequence
python 包含6种内建序列,列表,元组,字符串,Unicode字符串,buffer对象,xrange对象
列表可以修改,元组不能,只能使用元组作为字典的键
2.2
edward = [‘Edward‘, 42]
john = [‘John‘,50]
database = [edward, john]
2.3
容器{序列,映射,集合...}
2.4
索引,负数索引
‘hello‘[1]
raw_input(‘Year:‘)[3]
分片,加,乘,检验成员资格,计算序列长度,找出最大/最小值
2.5
x=input ("‘Hello World!! What‘s your age?")
print ("your age is",x)
months = [
‘Jan‘,
‘Feb‘,
‘March‘,
‘April‘,
‘May‘,
‘June‘,
‘July‘,
‘Aug‘,
‘Sep‘,
‘Oct‘,
‘Nov‘,
‘Dec‘,
]
endings = [‘st‘,‘nd‘,‘rd‘]+17*[‘th‘]\
+[‘st‘,‘nd‘,‘rd‘]+7*[‘th‘]\
+[‘st‘]
year = input(‘Year:‘)
month = input(‘Month:‘)
day = input("Day:")
month_number = int(month)-1
day_number=int(day)-1
month_name = months[month_number]
ordinal=day+endings[day_number]
print (month_name+‘ ‘+ordinal+‘, ‘+year)
2.6
分片
numbers[begin:end:steplong]
begin,end可以空置,steplong不能为0,当为负数时从左向右提取

python基础教程笔记 第1单元 && 第2单元

标签:

原文地址:http://www.cnblogs.com/xuesu/p/4314157.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!