Exercise 8 · Chapter: Input & Type ConversionOptional+50 XP
Initials
Read a first name and a last name (on separate lines), then print the initials (first letter of each).
Example:
Input:
Alex Smith
Output:
AS
Hint: You can get the first letter of a string with name[0].
Need a hint?
3 available · costs 5 XP each
python
Output
Run your code to see the output here.