En Python, se puede lograr una string de formato requerido por diferentes métodos. Algunos de ellos son; 1) Uso de % 2) Uso de {} 3) Uso de strings de plantilla En este artículo se analiza el formateo mediante %. El formateo usando % es similar al de ‘printf’ en el lenguaje de programación C. %d – entero %f – flotante %s – string %x – hexadecimal %o – octal El siguiente ejemplo describe el uso de formato usando % en Python.
Python3
# Python program to demonstrate the use of formatting using % # Initialize variable as a string variable = '15' string = "Variable as string = %s" %(variable) print (string ) # Printing as raw data # Thanks to Himanshu Pant for this print ("Variable as raw data = %r" %(variable)) # Convert the variable to integer # And perform check other formatting options variable = 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 as any string or char after a mark # here i use mayank as a string print ("Variable as printing with special char = %c" %(variable)) print ("Variable as hexadecimal = %x" %(variable)) print ("Variable as octal = %o" %(variable))
Producción :
Variable as string = 15 Variable as raw data = '15' Variable as integer = 15 Variable as float = 15.000000 Variable as printing with special char = mayank Variable as hexadecimal = f Variable as octal = 17
Este artículo es una contribución de Nikhil Kumar Singh (nickzuck_007). Escriba comentarios si encuentra algo incorrecto o si desea compartir más información sobre el tema tratado anteriormente.
Publicación traducida automáticamente
Artículo escrito por GeeksforGeeks-1 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA