IN PYTHON CODE ONLY
10.12 Program: Data visualization
(1) Prompt the user for a title for data. Output the title. (1pt)
Ex:
Enter a title for the data:Number of Novels AuthoredYou entered: Number of Novels Authored
(2) Prompt the user for the headers of two columns of a table.Output the column headers. (1 pt)
Ex:
Enter the column 1 header:Author nameYou entered: Author nameEnter the column 2 header:Number of novelsYou entered: Number of novels
(3) Prompt the user for data points. Data points must be in thisformat: string, int. Store the information before thecomma into a string variable and the information after the commainto an integer. The user
OR
OR