Numpy的使用:

一、数据导入:

world_alcohol.txt内的数据结构图:

Numpy:txt文本数据导入-- numpy.genfromtxt( )

 



数据导入python代码:numpy.genfromtxt()
import numpy

print("-----------------书写格式1---------------------")
# numpy.genfromtxt()可以将文本里每行的数据导入,delimiter=","表示每行的数据之间用逗号分隔符
# 如果每行的元素有字符串,要用str类型导入,否则无法显示
world_alcohol = numpy.genfromtxt("world_alcohol.txt", delimiter=",",dtype=str)

print(type(world_alcohol))   # 返回:<class 'numpy.ndarray'>

print(world_alcohol)

print("---------------书写格式2------------------------")
# dtype="U75"   :表示以字符串类型导入(75是导入的字符个数为75)
# skip_header=1 :表示从txt的第1行导入,即表头(第0行)不导入
world_alcohol = numpy.genfromtxt("world_alcohol.txt", delimiter=",", dtype="U75", skip_header=1)

print(world_alcohol)

# print(help(numpy.genfromtxt))  # 查看numpy.genfromtxt的帮助文档

 

 

相关文章:

  • 2022-02-18
  • 2022-12-23
  • 2021-09-23
  • 2021-11-20
  • 2022-12-23
  • 2022-12-23
  • 2021-09-22
猜你喜欢
  • 2021-11-29
  • 2021-07-08
  • 2022-12-23
  • 2023-03-24
  • 2022-03-02
  • 2022-12-23
  • 2022-02-19
相关资源
相似解决方案