Python でテキスト ドキュメントを編集または読み取るプログラムを作成していますが、まだ完成しておらず、読み取り部分で立ち往生しています。1行だけ印刷したいのですが、その方法については空白を描いています。読み取り部分は「def read():」にあります。
def menu():
print("What would you like to do?")
print("\n(1) Write new text")
print("(2) Read line 3")
choice = float(input())
if choice == 1:
write()
elif choice == 2:
read()
def read():
with open('test.txt', 'r') as read:
print()
def write():
print("\nType the full name of the file you wish to write in.")
file1 = input().strip()
with open(file1, "a") as add:
print("What do you want to write?")
text = input()
add.write("\n"+ text)
menu()