Browse Source

📝 Add tutorial src for python-types

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

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

@ -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…
Cancel
Save