所以我正在尝试编写一个脚本,允许用户在不同类别下写下笔记,然后将这些笔记打印到输出文件中。下面看一些示例代码。
def notes():
global text
text = raw_input("\nPlease enter any notes.\n>>> ")
print "\Note added to report."
notes_menu()
def print_note():
new_report.write("\nNotes: \n%r" % text)
我的问题分为两部分:
我可以用什么来做到这一点,以便如果再次调用 notes 方法(文本已经分配给字符串),它会创建一个名为 text1 的新变量,并且会在调用 notes 方法和 text 时继续这样做多次分配?
如何让打印方法继续检查并打印尽可能多的文本^ nths?