Which of the following statements most accurately describes…

Questions

Write а Pythоn prоgrаm thаt displays a randоm lowercase letter (1 point), followed by its ASCII code (0.5 point). Please note that your program must display the information exactly as illustrated below. This includes putting single quotes around your random letter on the 2nd line of the display (0.5 point) Here is an example run of the program: Random letter is: aThe ASCII code of 'a' is 97. No need to upload a file for this question, just paste the code in the text box below.

Write а Pythоn prоgrаm thаt will read frоm the user a first name and a last name as a single string of text (1 point). You will then display on the screen a single string that is the concatenation of the initial of the first name with the initial of the last name (1 point). Here is an example run of the program (user input in red): First and Last names: John WickYour initials are: JW No need to upload a file for this question, just paste the code in the text box below.