Chapters
Python114 chapters

Exercises

f-Strings

3 tasks. Write the code, press Check, and the page runs it against a real Python interpreter.

Exercise 1

Rewrite the concatenation as a single f-string.

Python
name = "Ada"
age = 36
print("Name: " + name + ", age " + str(age))
Exercise 2

Print the total to exactly two decimal places.

Python
price = 19.99
count = 3
# print 59.97
Exercise 3

Print the share as a percentage with one decimal place.

Python
share = 0.3421
# print 34.2%