DEV Community

manojGitHub
manojGitHub

Posted on

1

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.

Image of Stellar post

Check out Episode 1: How a Hackathon Project Became a Web3 Startup 🚀

Ever wondered what it takes to build a web3 startup from scratch? In the Stellar Dev Diaries series, we follow the journey of a team of developers building on the Stellar Network as they go from hackathon win to getting funded and launching on mainnet.

Read more

👋 Kindness is contagious

If this article resonated with you, feel free to tap ❤️ or drop a quick comment sharing your thoughts!

Okay