I am trying to get this output: 2014-07-26 02:12:18: Houston Texas
When I try to do the assignment using:
current_time = '2014-07-26 02:12:18:'
my_city = 'Houston'
my_state = 'Texas'
log_entry = current_time + my_city + my_state
print(log_entry)
I am getting this output: 2014-07-26 02:12:18:HoustonTexas
How do I get the spaces between the :, Houston, and Texas