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"))