Answer:
my_city = input('')
my_state = input('')
log_entry = current_time + ' ' + my_city + ' ' + my_state
Step-by-step explanation:
+ ' ' + means just a space. hope this helps.
current_time = '2014-07-26 02:12:18:'
my_city = ' '
my_state = ' '
log_entry = ' '
'''Your solution goes here'''
my_city = input(' ')
my_state = input(' ')
print(log_entry)
5.8m questions
7.5m answers