所以我想这就是我不能以德报怨的问题之一。任务如下:Using the file object input, write code that read an integer from a file called

rawdata into a variable datum (make sure you assign an integer value to datum).

Open the file at the beginning of your code, and close it at the end.

好的,所以第一件事:我认为输入函数是为一个对象(比如变量)分配数据,而不是从对象中读取数据。不是吗read.file_名称? 在

但我试过了:infile = open('rawdata','r')

datum = int(input.infile())

infile.close()

现在第一个问题。。。我的编程实验室不想给它评分。我的意思是我输入代码,点击'提交',我得到“检查”屏幕。就这样。在写这篇文章的时候,我最新的一次尝试是“检查”了11分钟。这不是给我一个错误,只是没有…'我想是在检查。在

现在我不能用Python来尝试这个程序,因为它需要一段时间,而且我在一台写锁的学校计算机上,所以即使我有正确的代码(我怀疑),程序也无法运行,因为它既找不到文件rawdata也无法创建它。在

所以。。。怎么回事?是我读错了说明书,还是它告诉我用其他方式使用输入,然后我尝试使用它?或者我应该用不同的方法?在