-
Notifications
You must be signed in to change notification settings - Fork 196
1.2 Formatted Output and f‐strings
Bora Canbula edited this page Dec 2, 2023
·
1 revision
In this course we will use formatted output and f-string a lot, not just beautify the outputs but also generating some string arguments.
Let's create some variables:
v1 = 5 # integer
v2 = 7.34 # float
v3 = "Bora" # string
v4 = True # bool
v5 = 2j # complex
We will use the format specifiers as:
d: integers
f,e,g: floating-point numbers
b: binary numbers
s: string
print("v1 = ", v1, " | v2 = ", v2, " | v3 = ", v3, " | v4 = ", v4, " | v5 = ", v5)
Output
v1 = 5 | v2 = 7.34 | v3 = Bora | v4 = True | v5 = 2j
print("v1 = %d | v2 = %f | v2 = %e | v2 = %g | v3 = %s | v4 = %s | v4 = %d | v5 = %s" % (v1, v2, v2, v2, v3, v4, v4, v5))
Output
v1 = 5 | v2 = 7.340000 | v2 = 7.340000e+00 | v2 = 7.34 | v3 = Bora | v4 = True | v4 = 1 | v5 = 2j
print("v1 = {0} | v2 = {1} | v3 = {2} | v4 = {3} | v5 = {4}".format(v1, v2, v3, v4, v5))
Output
v1 = 5 | v2 = 7.34 | v3 = Bora | v4 = True | v5 = 2j
print(f"v1 = {v1} | v2 = {v2} | v3 = {v3} | v4 = {v4} | v5 = {v5}")
Output
v1 = 5 | v2 = 7.34 | v3 = Bora | v4 = True | v5 = 2j
print(f"v1 = {v1:05d} | v1 = {v1:b} | v2 = {v2:12.3f} | v2 = {v2:12.3e} | v2 = {v2:6g}")
Output
v1 = 00005 | v1 = 101 | v2 = 7.340 | v2 = 7.340e+00 | v2 = 7.34