Python - 参数中的条件

时间:2015-12-13 21:16:05

标签: python c python-3.x if-statement conditional

我想知道在Python中我是否可以编写类似的内容:

FILE *file = fopen(path, mode);
char tmp[block_size] = {0};

while(ftell(file) < file_length)
{
    fread(tmp, 1, (file_size - fw.tell()) > block_size ?
                     block_size : (file_size - ftell(file)), file);

    // do something
}

fclose(file);

0 个答案:

没有答案