Answer:
^8
4.2f
Explanation:
'{:^8}{:4.2f}' .format('Root', 0.2345789)
The ^ symbol centers 'Root' in a field eight characters wide.
4.2f rounds to two decimal places and places the number in a field 4 characters wide.
Answer:
1. ^8
2. 4.2f
Explanation:
'{:^8}{:4.2f}' .format('Root', 0.2345789)
The ^ symbol centers 'Root' in a field eight characters wide.
4.2f rounds to two decimal places and places the number in a field 4 characters wide.
and because i got it right on edge.