CHALLENGE
ACTIVITY
2.1.2: Concatenating strings.
Use input() to read a string from input into variable my_city. Then, use input() again to read another string from input into variable
my_state.
Lastly, use string concatenation to assign log_entry with the following strings in order, all on one line:
• current_time
• a space character (' ')
• my_city
• a space character (' ')
• my_state
? Click here for examples
Learn how our autograder works
599824.3356848.qx3zqy7
1 current_time = '2020-07-26 02:12:18:'
2
3 '''Your solution goes here'''
4
5 print(log_entry)
1 test
passed
All tests
passed