Day 5, Bug Fixing Exercise 3

Explanation

Line 4 was

    print("f{i}.{j}")

but it should be

    print(f"{i}.{j}")

f should be before the quotes, not after them.

Recommended Course

Python Mega Course: Learn Python in 60 Days, Build 20 Apps
Learn Python on Udemy completely in 60 days or less by building 20 real-world applications from web development to data science.