-
-
Save alikarimi120/0b3c51ee7bea68cbceee222c16a804db to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
hello_str = 'hello' # String literals can use single quotes | |
world_str = "world" # or double quotes; it does not matter. | |
print(hello_str, len(hello_str)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment