I have 2 variables, city1 and city2 as shown below:
city1 = "New York"
city2 = "Los Angeles"
According to Function and Variable Names in PEP 8 – Style Guide for Python Code, an underscore _ is needed between the words in a variable name as shown below:
first_name = "John"
last_name = "Tom"
Now, is underscore also needed between the word and number in a variable name as shown below?
city_1 = "New York"
city_2 = "Los Angeles"