I'm learning python from beginning and I don't understand the part where it says {2:.2f}. I know it is related to string format, but no more.
a = int(input('introduce a number: '))
b = int(input('introduce a number: '))
print('the result of {0} divided by {1} is {2:.2f}, and the result of {1} divided by {0} es {3}'.format(a, b, a/b, b/a))
Thanks!