Literally formatting
While analyzing the text from Wikipedia pages, you read that Python 3.6 introduced f-strings.
You remember that you've created a website that displayed data science facts but it was too slow. You think that it could be due to the string formatting you used. Because f-strings are very fast and easy to use, you decide to rewrite that project.
The variables field1
, field2
and field3
containing character strings as well as the numeric variables fact1
, fact2
, fact3
and fact4
have been saved.
If you want to explore the variables, you can use print()
to view them in the IPython Shell.
Cet exercice fait partie du cours
Regular Expressions in Python
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
# Complete the f-string
print(____"Data science is considered ____ in the ____st century")