我想在Python 3中使用C中的fgetc()函数。我想我必须使用:
ord( fp.read( 1 ) )
但我不确定。更具体一点,我想将以下代码从C转换为Python3:
for(i=0;i<xdimension;i++)
{
for(j=0;j<ydimension;j++)
{
temp=1.164 * (fgetc(fp) - 16);
if (temp>255) { temp=255 ; }
if(i>=N || j>=M) { printf("i=%d,j=%d\n",i,j);}
framed[i*M+j]=temp;
}
}