sábado, 9 de octubre de 2021

Python in shorts: how to change a str to Upper case

How to change a str to Upper case?

Today we'll do a pretty simple one, we'll make a str upper case. And to achieve this we are going to use a simple method that comes built in on str objects, "upper()".


Pretty neat right? Here we have an example:

>>> example_string = ‘This is a simple example’

>>> print(example_string)

“This is a simple example”

>>> print(example_string.upper())

“THIS IS A SIMPLE EXAMPLE”


Some useful links:

https://docs.python.org/3/library/stdtypes.html

https://www.w3schools.com/python/ref_string_upper.asp

https://www.programiz.com/python-programming/methods/string/upper


Como cambiar un str a Mayúsculas?

Ho vamos a hacer algo sencillo, pondremos un str en mayúsculas. Y para lograr esto utilizaremos un simple método que viene integrado en los objetos str, "upper()".


Muy listo, ¿verdad? Aquí tenemos un ejemplos:

>>> cadena_ejemplo = ‘Este es un ejemplo sencillo’

>>> print(cadena_ejemplo)

“Este es un ejemplo sencillo”

>>> print(cadena_ejemplo.upper())

“ESTE ES UN EJEMPLO SENCILLO”


Algunos enlaces sencillos:

https://docs.python.org/3/library/stdtypes.html

https://www.w3schools.com/python/ref_string_upper.asp

https://www.programiz.com/python-programming/methods/string/upper