I'm new to python, is there a way to modify this code to the point I can keyboard input movies and their rating and it appends to the row in the table?
from prettytable import PrettyTable
x = PrettyTable(["Moive Title", "Ratings"])
x.padding_width = 1 # One space between column edges and contents (default)
x.add_row(["Inception", "5 Stars"])
x.add_row(["Training Day","5 Stars"])
x.add_row(["Boyhood", "3 Stars"])
x.add_row(["Interstellar", "4.5 Stars"])
print x