赞
踩
- # !/usr/bin/env python
- # -*- coding: utf-8 -*-
- import time
- print time.time()
- import sys
- reload(sys)
- sys.setdefaultencoding('utf-8')
-
- if 9 > 7:
- print '111111'
- print(100/8)
- aa=u'鼠牛虎兔龙蛇马羊猴鸡狗猪'
- print type(aa)
- print len(aa)
- print type(aa[0])
- print len(aa[0])
- print aa[0]
-
-
- C:\Python27\python.exe C:/Users/TLCB/PycharmProjects/untitled2/socket/t4.py
- 1594437112.2
- 111111
- 12
- <type 'unicode'>
- 12
- <type 'unicode'>
- 1
- 鼠
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。