Created
December 23, 2023 07:05
-
-
Save UniqueName12345/1f9830c905881d292ac7a0d521c21209 to your computer and use it in GitHub Desktop.
Gets and prints out the length of a given string
This file contains hidden or 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
string2 = """content of string here""" | |
length = len(string2) | |
print(length) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment