How to Capitalize the First Character in a String using Python

In this tutorial, we will program 'How to Capitalize the First Character in a String'. We will learn how to capitalize the first character in a string format. The main goal here is to create a program that can actually make it easier to capitalize the first character. I will provide a sample program to demonstrate the actual coding of this tutorial.

This topic is very easy to understand; just follow the instructions I provide, and you can also do it yourself with ease. The program I will show you covers the basics of programming for capitalizing the first character in a string. I will do my best to provide you with the easiest way to make the first character capitalize. So, let's start with the coding.

Getting Started:

First you will have to download & install the Python IDLE's, here's the link for the Integrated Development And Learning Environment for Python https://www.python.org/downloads/.

Creating Main Function

This is the main function of the application. The following code will display a simple GUI in terminal console that will display program. To do this, simply copy and paste these blocks of code into the IDLE text editor.
  1. ret = False
  2.  
  3.  
  4. while True:
  5. print("\n================== Capitalize the First Character in a String ==================\n\n")
  6.  
  7.  
  8. my_string = input("Enter string: ")
  9. print("\n")
  10. print(my_string[0].upper() + my_string[1:])
  11.  
  12.  
  13. opt = input("\nDo you want to try again?(yes/no): ")
  14.  
  15. if opt.lower() == 'yes':
  16. ret=False
  17. elif opt.lower() == 'no':
  18. ret=True
  19. print("Exiting program....")
  20.  
  21. else:
  22. print("Please enter yes/no:")
  23. break
  24.  
  25. if ret == False:
  26. continue

This Python script capitalizes the first character in a string. It prompts the user to enter a string, then it capitalizes the first character using string slicing and the upper() method to convert it to uppercase. Finally, it prints the modified string and prompts the user if they want to try again or exit the program.

Output:

The How to Capitalize the First Character in a String using Python source code that I provide can be download below. Please kindly click the download button.

There you have it we successfully created How to Capitalize the First Character in a String using Python. I hope that this simple tutorial help you to what you are looking for. For more updates and tutorials just kindly visit this site. Enjoy Coding!

More Tutorials for Python Language

Python Tutorials

Add new comment