def drop_table(): """ Drops the table """ if input('Sure? [y/n]') == 'y': db.drop_all() print('Table dropped.') else: print('Bad choice. Bye!')