charA = 'A'stringA = str(charA)# stringA is "A"charStr = "character " + charA# stringA is "character A"print(f"{stringA = }")print(f"{charStr = }")