Yahoo Αναζήτηση Διαδυκτίου

Αποτελέσματα Αναζήτησης

  1. 7.1.5 Initials.py. Cannot retrieve latest commit at this time. # fill in the body of this function! first = "Eva" last = "Epleanas" def initials (first, last): return (first [0] + "." + last [0] + ".") print (initials (first,last)) CodeHs answers.

  2. initials(first, last) This is taking your two variables and passing them to the function as arguments. The arguments are sent to the functions parameters and then those parameters are used inside the function.

  3. def initials(first, last): return first[0] + "." + last[0] + "." print(initials("Tracy", "Turtle")) print(initials("Peter", "Parker")

  4. Edit: For anyone else who wants the answer def initials(first, last): return first[0]+"."+last[0]+"."

  5. You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window.

  6. A collection of my CodeHS work from virtual school in 2021. My school account will be deleted, so it made sense to post it here. - IBXCODECAT/CodeHS-Python

  7. The problem is asking you to write a program that takes a person's full name as input and outputs their initials. Step 2/4. 2. To solve this problem, you need to break down the person's full name into individual words. You can do this by using the `split ()` method in Python.

  1. Αναζητήσεις που σχετίζονται με 7.1.5: initials codehs

    7.1.5: initials codehs answers