MCPcopy
hub / github.com/Asabeneh/30-Days-Of-Python / generate_full_name

Function generate_full_name

mymodule.py:1–4  ·  view source on GitHub ↗
(firstname, lastname)

Source from the content-addressed store, hash-verified

1def generate_full_name(firstname, lastname):
2 space = ' '
3 fullname = firstname + space + lastname
4 return fullname
5
6
7def sum_two_nums(num1, num2):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected