Looking for answers? Westonci.ca is your go-to Q&A platform, offering quick, trustworthy responses from a community of experts. Ask your questions and receive detailed answers from professionals with extensive experience in various fields. Get detailed and accurate answers to your questions from a dedicated community of experts on our Q&A platform.

prefixes = "BCFHMPRSVT"
suffix = "at"
for p in prefixes:
print(p + suffix)
Since Tat is not a word, the program needs to be changed to print That instead of Tat. Add a conditional statement to make the program print That instead of Tat.