Movatterモバイル変換


[0]ホーム

URL:


Open In App
Next Article:
How to use String Formatters in Python
Next article icon

In Python, a string of required formatting can be achieved by different methods. Some of them are; 1) Using % 2) Using {} 3) Using Template Strings In this article the formatting using % is discussed. The formatting using % is similar to that of 'printf' in C programming language. %d - integer %f - float %s - string %x - hexadecimal %o - octal The below example describes the use of formatting using % in Python. 

Python
# Python program to demonstrate the use of formatting using %# Initialize variable as a stringvariable='15'string="Variable as string =%s"%(variable)print(string)# Printing as raw data# Thanks to Himanshu Pant for thisprint("Variable as raw data =%r"%(variable))# Convert the variable to integer# And perform check other formatting optionsvariable=int(variable)# Without this the below statement# will give error.string="Variable as integer =%d"%(variable)print(string)print("Variable as float =%f"%(variable))# printing special characters using their ASCII values# For example, 'm' corresponds to ASCII value 109print("Variable as printing with special char =%c"%(109))print("Variable as hexadecimal =%x"%(variable))print("Variable as octal =%o"%(variable))

Output
Variable as string = 15Variable as raw data = '15'Variable as integer = 15Variable as float = 15.000000Variable as printing with special char = mVariable as hexadecimal = fVariable as octal = 17...

K

kartik
Improve
Article Tags :
Practice Tags :

Similar Reads

We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood ourCookie Policy &Privacy Policy
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences

[8]ページ先頭

©2009-2025 Movatter.jp