Browse Source

📝 Add second tutorial src for python-types

pull/11/head
Sebastián Ramírez 6 years ago
parent
commit
5bd167e0e7
  1. 6
      docs/tutorial/src/python-types/tutorial002.py

6
docs/tutorial/src/python-types/tutorial002.py

@ -0,0 +1,6 @@
def get_full_name(first_name: str, last_name: str):
full_name = first_name.title() + " " + last_name.title()
return full_name
print(get_full_name("john", "doe"))
Loading…
Cancel
Save