VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > Python基础教程 >
  • 30个Python常用小技巧(4)

13、运行时检测python版本

1
2
3
4
import sys
if not hasattr(sys, "hexversion"or sys.version_info != (27):
    print("sorry, you are not running on python 2.7")
    print("current python version:", sys.version)

sorry, you are not running on python 2.7

 

current python version: 3.5.1 (v3.5.1:37a07cee5969, Dec  6 2015, 01:54:25) [MSC v.1900 64 bit (AMD64)]

 

14、组合多个字符串

1
2
3
test = ["I""Like""Python"]
print(test)
print("".join(test))

 

['I', 'Like', 'Python']

 

ILikePython

 

15、四种翻转字符串、列表的方式

 

5

3

1

 

 

16、用枚举在循环中找到索引

1
2
3
test = [102030]
for i, value in enumerate(test):
    print(i, ':', value)

0 : 10

1 : 20

2 : 30

 

17、定义枚举量

1
2
3
4
5
6
class shapes:
    circle, square, triangle, quadrangle = range(4)
print(shapes.circle)
print(shapes.square)
print(shapes.triangle)
print(shapes.quadrangle)

0

1

2

3

 

18、从方法中返回多个值

1
2
3
4
def x():
    return 1234
a, b, c, d = x()
print(a, b, c, d)

相关教程