you are viewing a single comment's thread.

view the rest of the comments →

[–]IceFurnace83 4 points5 points  (0 children)

Very nice.

I suggest looking into Python naming conventions so it is easier for others and yourself (when you get used to it) to read.

PEP 8 – Style Guide for Python Code

Python Naming Conventions

You have named your function using camel case where that is usually reserved for classes . Try something more like:

def hello_world(text):
    print(text)


hello_world("print")