78.1k views
12 votes
Can someone help me with Exercise 7.1.5: Initials on codehs.

User TheSHEEEP
by
3.6k points

1 Answer

13 votes

Answer:

def initials(string, new_string):

return string[0] + "." + new_string[0] + "."

print(initials("Your", "Name"))

Step-by-step explanation:

User Katlyn
by
3.7k points