import pandas # lists to hold ticket details all_messages = ["cat", "I had been at the window somewhat less than half an hour, when I saw something coming out of " "the Count's window.", "I Like Licking Rocks!", "Arsenic is my favourite food.", "Programming"] all_shift_numbers = [7, 12, 3, 1, 30] all_encoded_messages = ["jha", "U tmp nqqz mf ftq iuzpai eayqitmf xqee ftmz tmxr mz tagd, itqz U emi eayqftuzs oayuzs " "agf ar ftq Oagzf'e iuzpai.", "L Olnh Olfnlqj Urfnv!", "Bstfojd jt nz gbwpvsjuf gppe.", "Tvskveqqmrk"] all_decoded_messages = ["cat", "I had been at the window somewhat less than half an hour, when I saw something coming " "out of the Count's window.", "I Like Licking Rocks!", "Arsenic is my favourite food.", "Programming"] caesar_cipher_dict = { 'Message': all_messages, 'Shift Number': all_shift_numbers, 'Encoded Messages': all_encoded_messages } # create dataframe / table from dictionary caesar_cipher_frame = pandas.DataFrame(caesar_cipher_dict) print(caesar_cipher_frame) print()