Python Check User input is a Letter or Number

Python Check User input is a Letter or Number

Python program to check if the input is number or letter; In this tutorial, you will learn how to check if the input is a number or letter in python.

Python Check User input is a Letter or Number

  • Python code to check whether a string contains a number or not
  • Python check if given string contains only letter

Python code to check whether a string contains a number or not

  • Take input from the user.
  • Check whether a string contains number or not by using isdigit() function.
  • Print the result.
# python code to check whether a string 
# contains only digits or not 

#
str1 = input("Please enter number or string or both")

# checking & printing messages
if str1.isdigit():
    print("str contains a number")
else:
    print("str does not contain a number")

After executing the program, the output will be:

Execution -1

Please enter number or string or both 1234
str contains a number

Execution -2

Please enter number or string or both test556
str does not contain a number

Python check if given string contains only letter

  • Take input from the user.
  • Check whether a string contains letter or not by using isalpha() function.
  • Print the result.
# python code to check whether a string 
# contains only letter or not 

#
str1 = input("Please enter anything ")

# Code to check
if str1.isalpha(): 
    print("String contains only letters") 
else: 
    print("String doesn't contains only letters") 

After executing the program, the output will be:

Execution – 1

Please enter anything here
String contains only letters

Execution – 2

Please enter anything  hello34
String doesn't contains only letters

Recommended Python Tutorials

AuthorAdmin

Greetings, I'm Devendra Dode, a full-stack developer, entrepreneur, and the proud owner of Tutsmake.com. My passion lies in crafting informative tutorials and offering valuable tips to assist fellow developers on their coding journey. Within my content, I cover a spectrum of technologies, including PHP, Python, JavaScript, jQuery, Laravel, Livewire, CodeIgniter, Node.js, Express.js, Vue.js, Angular.js, React.js, MySQL, MongoDB, REST APIs, Windows, XAMPP, Linux, Ubuntu, Amazon AWS, Composer, SEO, WordPress, SSL, and Bootstrap. Whether you're starting out or looking for advanced examples, I provide step-by-step guides and practical demonstrations to make your learning experience seamless. Let's explore the diverse realms of coding together.

Leave a Reply

Your email address will not be published. Required fields are marked *