本文整理汇总了Python中Table.Table.add_item方法的典型用法代码示例。如果您正苦于以下问题:Python Table.add_item方法的具体用法?Python Table.add_item怎么用?Python Table.add_item使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Table.Table
的用法示例。
在下文中一共展示了Table.add_item方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Table
# 需要导入模块: from Table import Table [as 别名]
# 或者: from Table.Table import add_item [as 别名]
#no lengths or amounts completed greater than 999
#don't ask for save if previously saved and no new changes
import sys
from Table import Table
from Record import Record
table = Table("The Fox's Collection")
table.add_item(Record("Saga", 30, 30))
table.add_item(Record("The Walking Dead", 36, 144))
table.add_item(Record("Parks and Recreation", 7, 7))
table.add_item(Record("30 Rock", 4, 7))
command = input("What would you like to do? (add, delete, write, open, exit): ")
while True:
if command == "add":
name = input("Name: ")
amount_completed = int(input("Amount Completed: "))
length = int(input("Length: "))
table.add_item(Record(name, amount_completed, length))
elif command == "delete":
name = input("Name: ")
table.delete_item(name)
elif command == "write":
file_name = input("File name (example.txt): ")
table.write_to_file(file_name)
elif command == "open":