如何在Python 3中使用或转换C中的fgetc()函数?

时间:2015-10-21 00:14:01

标签: c python-3.x fgetc

我想在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;
    }
}

0 个答案:

没有答案