NameError для имени файла? - PullRequest
       15

NameError для имени файла?

0 голосов
/ 09 октября 2019

Я пытаюсь написать программу, которая назначает цены списку, но у меня проблемы. Я продолжаю получать NameError, этот список затрат не определен. Программа должна запросить ввод, добавить его в список и просмотреть весь список, а затем записать его в файл .txt.

import os
def main():
    if os.path.exists("costlist.txt"):
        os.remove("costlist.txt")

print ("Assignment 6")
print ()
filename = input("Enter a file name, please. Or enter end to end.")
while filename != "end":
    try:
        file = open(filename, "r")
        listie = file.readlines()
        for item in listie:
            print(item)
        break
    except FileNotFoundError:
            filename = input("Sorry, that file wasn't found. Try again?")
    if filename == "end":
        exit
file.close()
listie.sort()
file = open(filename, "w")
for item in listie:
   file.write(item.strip("\n"))
file.close()
for item in listie:
    cost = input(print( item + "should cost how much?"))
    try:
        float.cost
    except ValueError:
            print ("You entered an invalid float that can't convert string to float:" + cost)
            print ("Skipping to the next item after" + item)
    print (item + "has a cost of" + cost + "dollars")
    file = open(costlist.txt, "a")
    file.append(cost)
print ("Cost List")
file = open (costlist.txt, "r")
for item in file:
    print (item)
print ("Program End")
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...