mirror of
https://github.com/fastapi/fastapi.git
synced 2026-09-14 14:31:28 -04:00
📝 Add tutorial src for python-types
This commit is contained in:
1 parent
786c392bd5
commit
58b69493a9
1 file changed
+6
@@ -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"))
|
||||
Reference in new issue
Block a user