Question: Input a six-digit integer. Assign first_three (int) to be the first three digits. Assign last-two (int) to be the last two digits. Assign middle_two (int)

Input a six-digit integer. Assign first_three (int) to be the first three digits. Assign last-two (int) to be the last two digits. Assign middle_two (int) to be the middlt two digits. Print out the three values. For example, if the input is 123456 The first three digits: 123 The last two digits: 56 The middle two digits: 34 x_str= input("Input x: ") # remember to convert to an int # first_three = # last_two = # middle_two = print("original input: ", x_str) print("first_three: ", first_three) print("last_two: ", last_two) print("middle_two: ", middle_two)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
