Write two statements to read in values for my_city followed by my_state. assign log_entry with current_time, my_city, and my_state. values should be separated by a space. sample output for given program if my_city is houston and my_state is texas: 2014-07-26 02:12:18: houston texas

Respuesta :

current_time = '2014-07-26 02:12:18:'

my_city = ' '

my_state = ' '

log_entry = ' '

'''Your solution goes here'''

my_city = input(' ')

my_state = input(' ')

log_entry = current_time + ' ' + my_city + ' ' + my_state

print(log_entry)