Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

You must login to ask a question.

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Quizzma Latest Articles

7.1.5 Initials CodeHS Answers

The most common answer is:

fill in the body of this function!
first = “Eva”
last = “Eplenas”
def initials(first, last):
return (first[0] + “.” + last[0] + “.”)
print (initials(first, last))

This function for generating initials from a first and last name is mostly correct, but the quotes have some minor issues due to formatting.

Here’s the corrected version of the function with proper Python syntax:

def initials(first, last):
    return first[0] + "." + last[0] + "."

first = "Eva"
last = "Eplenas"

print(initials(first, last))

This function correctly takes the first letter of the first name and the last name, concatenates them with periods, and returns the result. The print statement then outputs the initials “E.E.” for the given example names “Eva” and “Eplenas”.

Was this helpful?




Quizzma Team

Quizzma Team

The Quizzma Team is a collective of experienced educators, subject matter experts, and content developers dedicated to providing accurate and high-quality educational resources. With a diverse range of expertise across various subjects, the team collaboratively reviews, creates, and publishes content to aid in learning and self-assessment.
Each piece of content undergoes a rigorous review process to ensure accuracy, relevance, and clarity. The Quizzma Team is committed to fostering a conducive learning environment for individuals and continually strives to provide reliable and valuable educational resources on a wide array of topics. Through collaborative effort and a shared passion for education, the Quizzma Team aims to contribute positively to the broader learning community.

Related Posts

Leave a comment