本文整理汇总了Python中six.PY34属性的典型用法代码示例。如果您正苦于以下问题:Python six.PY34属性的具体用法?Python six.PY34怎么用?Python six.PY34使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类six
的用法示例。
在下文中一共展示了six.PY34属性的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: load_csv
# 需要导入模块: import six [as 别名]
# 或者: from six import PY34 [as 别名]
def load_csv(file, shape=None, normalize=False):
"""
Load CSV file.
:param file: CSV file.
:type file: file like object
:param shape : data array is reshape to this shape.
:type shape: tuple of int
:return: numpy array
"""
value_list = []
if six.PY2:
for row in csv.reader(file):
if len(row):
value_list.append(list(map(float, row)))
elif six.PY34:
for row in csv.reader([l.decode('utf-8') for l in file.readlines()]):
if len(row):
value_list.append(list(map(float, row)))
try:
if shape is None:
return numpy.array(value_list)
else:
return numpy.array(value_list).reshape(shape)
except:
logger.log(99, 'Failed to load array from "{}".'.format(file.name))
raise