mirror of https://github.com/tiangolo/fastapi.git
📝 Add tutorial src for python-types
This commit is contained in:
parent
786c392bd5
commit
58b69493a9
|
|
@ -0,0 +1,6 @@
|
|||
def get_full_name(first_name, last_name):
|
||||
full_name = first_name.title() + " " + last_name.title()
|
||||
return full_name
|
||||
|
||||
|
||||
print(get_full_name("john", "doe"))
|
||||
Loading…
Reference in New Issue