DEV Community

Discussion on: StringsInput

Collapse
 
pbouillon profile image
Pierre Bouillon

Be careful using str as a variable name, it is also used as a type, and it may cause some issues in the future, for example, with Python 3.6+:

def hello(str: str):
    print(f'Hello {str} !')

This is just a small comment, keep going !