DEV Community

manojGitHub
manojGitHub

Posted on

StringsInput

Foundation of Python Strings

Top comments (2)

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 !

Collapse
 
manojgithub profile image
manojGitHub

Thanks just started the path :) to just test the app deployment in GitHub

Some comments may only be visible to logged-in visitors. Sign in to view all comments.