string format python3 code example

Example 1: python fstring

#python3.6 is required
age = 12
name = "Simon"
print(f"Hi! My name is {name} and I am {age} years old")

Example 2: python f string

"""

An f-string stands for 'function-string' it's just used to work with 
strings more appropiately, they do the exact same job as concantenating
strings but are more efficient and readable.

"""
# Concantenating strings:

Age = "25"

print("I am "+Age+" years old.")

# Using f strings:

Age = 25

print(f"I am {Age} years old.")

# ^ notice the letter 'f' at the begining of the string.
# That defines the string as being an f-string.

# A third way of inputting variables into a string is by using
# .format()

Age = "25"

print("I am {} years old.".format(Age))

# If you had more than one variable:

Age = "25"
Name = "Jeff"

print("I am {} years old, and my name is {}.".format(Age,Name))

Example 3: python string format

string_a = "Hello"
string_b = "Cena"

# Index based:
print("{0}, John {1}"
      .format(string_a, string_b))
# Object based:
print("{greeting}, John {last_name}"
      .format(greeting=string_a, last_name=string_b))

Example 4: str.format python 3

print("Sammy the {pr} {1} a {0}.".format("shark", "made", pr = "pull request"))

Example 5: python format strings

name = "Rick"
age = 42
print(f"My name is {name} and I am {age} years old")

Example 6: python f string

import math

print('[[fill]align]                | f\'{"text":10}\'      | ', f'{"text":10}')        # text
print('[[fill]align]                | f\'{"text":>10}\'     | ', f'{"text":>10}')       #       text
print('[[fill]align]                | f\'{"text":^10}\'     | ', f'{"text":^10}')       #    text
print('[[fill]align]                | f\'{"text":#>10}\'    | ', f'{"text":#>10}')      # ######text
print('[[fill]align]                | f\'{"text":#<10}\'    | ', f'{"text":#<10}')      # text######
print('[[fill]align]                | f\'{"text":#^10}\'    | ', f'{"text":#^10}')      # ###text###
print('[[fill]align] with numbers   | f\'{12345:0=10}\'     | ', f'{12345:0=10}')       # 0000012345
print('[[fill]align] with numbers   | f\'{-12345:0=10}\'    | ', f'{-12345:0=10}')      # -000012345      
print('[[fill]align] with numbers   | f\'{12345:010}\'      | ', f'{12345:010}')        # 0000012345
print('[[fill]align] with numbers   | f\'{-12345:010}\'     | ', f'{-12345:010}')       # -000012345
print('[.precision]                 | f\'{math.pi:.2f}\'    | ', f'{math.pi:.2f}')      # 3.14
print('[grouping_option]            | f\'{1000000:,.2f}\'   | ', f'{1000000:,.2f}')     # 1,000,000.00
print('[grouping_option]            | f\'{1000000:_.2f}\'   | ', f'{1000000:_.2f}')     # 1_000_000.00
print('[sign] (+/-)                 | f\'{12345:+}\'        | ', f'{12345:+}')          # +12345
print('[sign] (+/-)                 | f\'{-12345:+}\'       | ', f'{-12345:+}')         # -12345
print('[sign] (+/-)                 | f\'{12345:+10}\'      | ', f'{12345:+10}')        #     +12345
print('[sign] (+/-)                 | f\'{-12345:+10}\'     | ', f'{-12345:+10}')       #     -12345
print('[sign] (+/-)                 | f\'{12345:+010}\'     | ', f'{12345:+010}')       # +000012345
print('[sign] (+/-)                 | f\'{-12345:+010}\'    | ', f'{-12345:+010}')      # -000012345
print('[b] (binary)                 | f\'{10:b}\'           | ', f'{10:b}')             # 1010
print('[o] (octal)                  | f\'{10:o}\'           | ', f'{10:o}')             # 12
print('[x] (hexadecimal)            | f\'{100:x}\'          | ', f'{100:x}')            # 64
print('[#b] (with notation base)    | f\'{10:#b}\'          | ', f'{10:#b}')            # 0b1010
print('[#0] (with notation base)    | f\'{10:#o}\'          | ', f'{10:#o}')            # 0o12
print('[#x] (with notation base)    | f\'{10:#x}\'          | ', f'{10:#x}')            # 0xa
print('[e] (scientific notation)    | f\'{345600000000:e}\' | ', f'{345600000000:e}')   # 3.456000e+11
print('[c] (character type)         | f\'{65:c}\'           | ', f'{65:c}')             # A
print('percentage (multiply by 100) | f\'{0.25:0%}\'        | ', f'{0.25:0%}')          # 25.000000%
print('percentage (multiply by 100) | f\'{0.25:.0%}\'       | ', f'{0.25:.0%}')         # 25%

Tags:

Java Example