标签:本地 定义 string 原来 单引号 结合 重复 可重复 另一个
if True:
print "True"
else:
print "False"
total = item_one + \
item_two + \
item_three
days = [‘Monday‘, ‘Tuesday‘, ‘Wednesday‘,
‘Thursday‘, ‘Friday‘]
#!/usr/bin/python
# -*- coding: UTF-8 -*-
# 文件名:test.py
‘‘‘
这是多行注释,使用单引号。
这是多行注释,使用单引号。
这是多行注释,使用单引号。
‘‘‘
"""
这是多行注释,使用双引号。
这是多行注释,使用双引号。
这是多行注释,使用双引号。
"""
Hello World!
H
llo
llo World!
Hello World!Hello World!
Hello World!TEST
[‘runoob‘, 786, 2.23, ‘john‘, 70.2]
runoob
[786, 2.23]
[2.23, ‘john‘, 70.2]
[123, ‘john‘, 123, ‘john‘]
[‘runoob‘, 786, 2.23, ‘john‘, 70.2, 123, ‘john’]
(‘runoob‘, 786, 2.23, ‘john‘, 70.2)
runoob
(786, 2.23)
(2.23, ‘john‘, 70.2)
(123, ‘john‘, 123, ‘john‘)
(‘runoob‘, 786, 2.23, ‘john‘, 70.2, 123, ‘john‘)
This is one
This is two
{‘dept‘: ‘sales‘, ‘code‘: 6734, ‘name‘: ‘john‘}
[‘dept‘, ‘code‘, ‘name‘]
[‘sales‘, 6734, ‘john‘]
运算符 | 逻辑表达式 | 描述 | 实例 |
and | x and y | 布尔"与" - 如果 x 为 False,x and y 返回 False,否则它返回 y 的计算值。 | (a and b) 返回 20。 |
or | x or y | 布尔"或" - 如果 x 是非 0,它返回 x 的值,否则它返回 y 的计算值。 | (a or b) 返回 10。 |
not | not x | 布尔"非" - 如果 x 为 True,返回 False 。如果 x 为 False,它返回 True。 | not(a and b) 返回 False |
运算符 | 描述 | 实例 |
in | 如果在指定的序列中找到值返回 True,否则返回 False。 | x 在 y 序列中 , 如果 x 在 y 序列中返回 True。 |
not in | 如果在指定的序列中没有找到值返回 True,否则返回 False。 | x 不在 y 序列中 , 如果 x 不在 y 序列中返回 True。 |
运算符 | 描述 | 实例 |
is | is是判断两个标识符是不是引用自一个对象 | x is y, 如果 id(x) 等于 id(y) , is 返回结果 1 |
is not | is not是判断两个标识符是不是引用自不同对象 | x is not y, 如果 id(x) 不等于 id(y). is not 返回结果 1 |
if 判断条件:
执行语句……
else:
执行语句……
if 判断条件1:
执行语句1……
elif 判断条件2:
执行语句2……
elif 判断条件3:
执行语句3……
else:
执行语句4……
while 判断条件:
执行语句……
for iterating_var in sequence:
statements(s)
for iterating_var in sequence:
for iterating_var in sequence:
statements(s)
statements(s)
while expression:
while expression:
statement(s)
statement(s)
#!/usr/bin/python
list1 = [‘physics‘, ‘chemistry‘, 1997, 2000];
print list1;
del list1[2];
print "After deleting value at index 2 : "
print list1;
[‘physics‘, ‘chemistry‘, 1997, 2000]
After deleting value at index 2 :
[‘physics‘, ‘chemistry‘, 2000]
序号 | 函数 |
1 |
比较两个列表的元素
|
2 |
列表元素个数
|
3 |
返回列表元素最大值
|
4 |
返回列表元素最小值
|
5 |
将元组转换为列表
|
序号 | 方法 |
1 |
在列表末尾添加新的对象
|
2 |
统计某个元素在列表中出现的次数
|
3 |
在列表末尾一次性追加另一个序列中的多个值(用新列表扩展原来的列表)
|
4 |
从列表中找出某个值第一个匹配项的索引位置
|
5 |
将对象插入列表
|
6 |
移除列表中的一个元素(默认最后一个元素),并且返回该元素的值
|
7 |
移除列表中某个值的第一个匹配项
|
8 |
反向列表中元素
|
9 |
对原列表进行排序
|
tup1 = ();
tup1 = (50,);
#!/usr/bin/python
tup = (‘physics‘, ‘chemistry‘, 1997, 2000);
print tup;
del tup;
序号 | 方法及描述 |
1 |
比较两个元组元素。
|
2 |
计算元组元素个数。
|
3 |
返回元组中元素最大值。
|
4 |
返回元组中元素最小值。
|
5 |
将列表转换为元组。
|
#!/usr/bin/python
# -*- coding: UTF-8 -*-
dict = {‘Name‘: ‘Zara‘, ‘Age‘: 7, ‘Class‘: ‘First‘};
del dict[‘Name‘]; # 删除键是‘Name‘的条目
dict.clear(); # 清空词典所有条目
del dict ; # 删除词典
序号 | 函数及描述 |
1 |
比较两个字典元素。
|
2 |
计算字典元素个数,即键的总数。
|
3 |
输出字典可打印的字符串表示。
|
4 |
返回输入的变量类型,如果变量是字典就返回字典类型。
|
序号 | 函数及描述 |
1 |
删除字典内所有元素
|
2 |
返回一个字典的浅复制
|
3 |
创建一个新字典,以序列 seq 中元素做字典的键,val 为字典所有键对应的初始值
|
4 |
返回指定键的值,如果值不在字典中返回default值
|
5 |
如果键在字典dict里返回true,否则返回false
|
6 |
以列表返回可遍历的(键, 值) 元组数组
|
7 |
以列表返回一个字典所有的键
|
8 |
和get()类似, 但如果键不存在于字典中,将会添加键并将值设为default
|
9 |
把字典dict2的键/值对更新到dict里
|
10 |
以列表返回字典中的所有值
|
#!/usr/bin/python
# -*- coding: UTF-8 -*-
import time; # 引入time模块
ticks = time.time()
print "当前时间戳为:", ticks
当前时间戳为: 1459994552.51
#!/usr/bin/python
# -*- coding: UTF-8 -*-
import time
localtime = time.localtime(time.time())
print "本地时间为 :", localtime
本地时间为 : time.struct_time(tm_year=2016, tm_mon=4, tm_mday=7, tm_hour=10, tm_min=3, tm_sec=27, tm_wday=3, tm_yday=98, tm_isdst=0)
#!/usr/bin/python
# -*- coding: UTF-8 -*-
import time
localtime = time.asctime( time.localtime(time.time()) )
print "本地时间为 :", localtime
本地时间为 : Thu Apr 7 10:05:21 2016
time.strftime(format[, t])
#!/usr/bin/python
# -*- coding: UTF-8 -*-
import time
# 格式化成2016-03-20 11:45:39形式
print time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())
# 格式化成Sat Mar 28 22:24:24 2016形式
print time.strftime("%a %b %d %H:%M:%S %Y", time.localtime())
# 将格式字符串转换为时间戳
a = "Sat Mar 28 22:24:24 2016"
print time.mktime(time.strptime(a,"%a %b %d %H:%M:%S %Y"))
2016-04-07 10:25:09
Thu Apr 07 10:25:09 2016
1459175064.0
#!/usr/bin/python
# -*- coding: UTF-8 -*-
import calendar
cal = calendar.month(2016, 1)
print "以下输出2016年1月份的日历:"
print cal;
以下输出2016年1月份的日历:
January 2016
Mo Tu We Th Fr Sa Su
1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31
def functionname( parameters ):
"函数_文档字符串"
function_suite
return [expression]
标签:本地 定义 string 原来 单引号 结合 重复 可重复 另一个
原文地址:http://www.cnblogs.com/tian-sun/p/7404383.html