ขอบคุณ OP สำหรับคำถามของคุณและโรมันสำหรับคำตอบของคุณ ฉันต้องค้นหาเล็กน้อยเพื่อค้นหาสิ่งนี้; ฉันหวังว่าสิ่งต่อไปนี้จะช่วยผู้อื่น
Python 2.7
ดู: https://docs.scipy.org/doc/numpy/user/basics.io.genfromtxt.html
import numpy as np
from StringIO import StringIO
data = "1, abc , 2\n 3, xxx, 4"
print type(data)
"""
<type 'str'>
"""
print '\n', np.genfromtxt(StringIO(data), delimiter=",", dtype="|S3", autostrip=True)
"""
[['1' 'abc' '2']
['3' 'xxx' '4']]
"""
print '\n', type(data)
"""
<type 'str'>
"""
print '\n', np.genfromtxt(StringIO(data), delimiter=",", autostrip=True)
"""
[[ 1. nan 2.]
[ 3. nan 4.]]
"""
Python 3.5:
import numpy as np
from io import StringIO
import io
data = "1, abc , 2\n 3, xxx, 4"
#print(data)
"""
1, abc , 2
3, xxx, 4
"""
#print(type(data))
"""
<class 'str'>
"""
#np.genfromtxt(StringIO(data), delimiter=",", autostrip=True)
# TypeError: Can't convert 'bytes' object to str implicitly
print('\n')
print(np.genfromtxt(io.BytesIO(data.encode()), delimiter=",", dtype="|S3", autostrip=True))
"""
[[b'1' b'abc' b'2']
[b'3' b'xxx' b'4']]
"""
print('\n')
print(np.genfromtxt(io.BytesIO(data.encode()), delimiter=",", autostrip=True))
"""
[[ 1. nan 2.]
[ 3. nan 4.]]
"""
นอกเหนือ:
dtype = "| Sx" โดยที่ x = ใด ๆ ของ {1, 2, 3, ... }:
dtypes ความแตกต่างระหว่าง S1 และ S2 ใน Python
"สตริง | S1 และ | S2 เป็นตัวบอกประเภทข้อมูลชนิดแรกหมายถึงอาร์เรย์เก็บสตริงที่มีความยาว 1, ที่สองของความยาว 2 ... "
TypeError
s (คาดว่าอาร์กิวเมนต์สตริงได้ 'ไบต์') ถ้าคุณทำการเปลี่ยนแปลงนี้ในการแยก คุณจะต้องระมัดระวังแยกแยะ btyes และ STR (Unicode) ในหลาม 3.