42: Take a string as input and print its length. [1000+ Python Programs]



Question: Write a Python Program that takes a string as input and prints its length.


Solution:

# Step 1: Take a String as user Input
input_string = input("Enter a string: ")

# Step 2: Make use of len() function
string_length = len(input_string)

# Step 3: Print Result
print(f"The length of the string is: {string_length}")
Output:

Enter a string: Code2care
The length of the string is: 9


Notebook Example:

Notebook Demo - String Lenght Python

These Python programs are created by experienced programmers to aid students in learning Python. We are here to make your learning experience as interactive and informative as possible. If you have questions or need more clarification, feel free to ask. Happy coding!

Please support independent contributors like Code2care by donating a coffee.

Buy me a coffee!

Buy Code2care a Coffee!

Facing issues? Have Questions? Post them here! I am happy to answer!

Author Info:

Rakesh (He/Him) has over 14+ years of experience in Web and Application development. He is the author of insightful How-To articles for Code2care.

Follow him on: X

You can also reach out to him via e-mail: rakesh@code2care.org

Copyright © Code2care 2024 | Privacy Policy | About Us | Contact Us | Sitemap