Explore Westonci.ca, the leading Q&A site where experts provide accurate and helpful answers to all your questions. Get the answers you need quickly and accurately from a dedicated community of experts on our Q&A platform. Our platform provides a seamless experience for finding reliable answers from a network of experienced professionals.

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.