From 58b69493a92ada5897300a96ef934fe593ffe926 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Mon, 17 Dec 2018 20:36:53 +0400 Subject: [PATCH] :memo: Add tutorial src for python-types --- docs/tutorial/src/python-types/tutorial001.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 docs/tutorial/src/python-types/tutorial001.py diff --git a/docs/tutorial/src/python-types/tutorial001.py b/docs/tutorial/src/python-types/tutorial001.py new file mode 100644 index 000000000..09039435f --- /dev/null +++ b/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"))