我发现用 Python 读二进制文件特别困难。你能帮我一下吗? 我需要读取这个文件,它在 Fortran 90中很容易读取
int*4 n_particles, n_groups
real*4 group_id(n_particles)
read (*) n_particles, n_groups
read (*) (group_id(j),j=1,n_particles)
文件格式如下:
Bytes 1-4 -- The integer 8.
Bytes 5-8 -- The number of particles, N.
Bytes 9-12 -- The number of groups.
Bytes 13-16 -- The integer 8.
Bytes 17-20 -- The integer 4*N.
Next many bytes -- The group ID numbers for all the particles.
Last 4 bytes -- The integer 4*N.
我如何用 Python 读取这些信息?我什么都试过了,但都没用。我有没有可能在 python 中使用一个 f90程序,读取这个二进制文件,然后保存我需要使用的数据?