Avoiding Quotes while Printing Strings
When printing strings in Python, quotes are usually omitted in standard output. However, when printing lists or dictionaries, string values appear enclosed in quotes. For example, consider the list ["Paris", "London", "New York"]. If printed directly, it appears as ['Paris', 'London', 'New York'] wi