Can anyone help me with this code?
Jobs = () openFile = open(\'Jobs.txt\') x = 1 while x != 0: Stuff = openFile.readline(x) if Stuff != \'\':
The Jobs object you created is a tuple, which is immutable. Therefore, you cannot "append" anything to it.
Try
Jobs = []
instead, in which you create a list object.