24. Formatting text strings

A formatted text string literal is a text string that begins with the letter 'F ' or 'f' and containing replacement fields delimited by braces { }. Replacement fields contain Python variables and, optionally, the formatting to give to the variable's contents.

If you want to print a key, you need to duplicate it: {{ or }}.

Example:

>>> nombre = 'Guido'
>>> apellido = 'van Rossum'
>>> print(f'El creador de Python es {nombre} {apellido}')
    El creador de Python es Guido van Rossum

>>> num = 7
>>> print(f'James Bond es el agente {num:03d}')
    James Bond es el agente 007

Exercises

  1. Repeat the following exercise changing the value of the 'name' variable with your own name.

    Exercise:

    nombre = 'Anselmo'
    print(f'{nombre:>20}')    # Justificado a la derecha
    print(f'{nombre:<20}')    # Justificado a la izquierda
    print(f'{nombre:^20}')    # Centrado
    print(f'{nombre:_^20}')   # Centrado con relleno '_'
    

    Exit:

                 Anselmo
    Anselmo
          Anselmo
    ______Anselmo_______
    
  2. Repeat the following exercise changing the value of the variable num = 78. On the last line change the number to your year of birth.

    Exercise:

    num = 44
    print(f'{num:10d}')    # Formato decimal entero. Longitud 10
    print(f'{num:+10d}')   # Formato decimal entero con signo. Longitud 10
    print(f'{num:10X}')    # Formato hexadecimal en mayúsculas. Longitud 10
    print(f'{num:010b}')   # Formato binario con ceros a la izquierda. Longitud 10
    

    Exit:

            44
           +44
            2C
    0000101100
    
  3. Repeat the following exercise with the variable e = 2.718281828. Remember that in Python decimals are always separated with a period, not a comma.

    Exercise:

    pi = 3.14159
    # Número de punto flotante que ocupa 10 espacios en total y tiene 3 decimales
    print(f'{pi:10.3f}')
    print(f'{pi:010.5f}') # Cinco decimales y ceros a la izquierda
    print(f'{pi:10.0f}')  # Igual que el primero, con cero decimales
    print(f'{pi:10.4e}')  # Igual que el primero, en notación científica
    

    Exit:

         3.142
    0003.14159
             3
     3.142e+00
    
  4. Repeat the following exercise changing the value of the numbers used so that other Unicode characters appear.

    Exercise:

    print(f'{78:c}')      # Formato de carácter Unicode
    print(f'{128520:c}')  # Formato de carácter Unicode
    print(f'{250:c}')     # Formato de carácter Unicode
    print(f'{2023:c}')    # Formato de carácter Unicode
    

    Exit:

    N
    😀
    ú
    ߧ
    
  5. Write a program that prompts for a character from the keyboard and returns the next 20 Unicode characters.

    Use the ord() function to convert the character to its Unicode number.

    Clue:

    char = input('Introduce un carácter: ')
    num = ord(char[0])
    for code in range(num + 1, num + 21):
        print(f'Código: ...  carácter: ... ')
    

    Exit:

    Introduce un carácter: ñ
    Código: 242  carácter: ò
    Código: 243  carácter: ó
    Código: 244  carácter: ô
    Código: 245  carácter: õ
    Código: 246  carácter: ö
    Código: 247  carácter: ÷
    Código: 248  carácter: ø
    Código: 249  carácter: ù
    Código: 250  carácter: ú
    Código: 251  carácter: û
    Código: 252  carácter: ü
    Código: 253  carácter: ý
    Código: 254  carácter: þ
    Código: 255  carácter: ÿ
    Código: 256  carácter: Ā
    Código: 257  carácter: ā
    Código: 258  carácter: Ă
    Código: 259  carácter: ă
    Código: 260  carácter: Ą
    Código: 261  carácter: ą
    

    Try entering different characters from the keyboard. Try copying from the Internet and pasting symbols, emojis, Greek and Cyrillic letters, etc.

  6. Write a function that prints the value of an RGB color in hexadecimal. The three parameters of the function will be three decimal numbers R, G and B (Red, Green and Blue) that must be in the range 0 to 255.

    Remember that hexadecimal values ​​must be in capital letters and must have two digits. The way to convert a variable to hexadecimal that always has two digits is to add the following format to the variable: f'{variable:02X}'.

    Example:

    def color_hex(red, green, blue):
       print(f' ... ')
    
    
    color_hex(128, 196, 4)
    color_hex(250, 5, 64)
    

    Exit:

    #80C404
    #FA0540