Discover a wealth of knowledge at Westonci.ca, where experts provide answers to your most pressing questions. Experience the convenience of getting accurate answers to your questions from a dedicated community of professionals. Discover detailed answers to your questions from a wide network of experts on our comprehensive 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.