Answer:
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
Explanation:
i feel that i remmeber it from a test
Convert the MBR to GPT disk is a way to solve the problem.
Take this one step at a time. Your teacher has given you the code for step 1. Now write step 2. Then 3, and so on.
For step 2: if you're using Python v2.x you'd use a line like
guess = int( raw_input( "Take another guess: " ) )
For Python v3.x it would be:
guess = int( input( "Take another guess: " ) )
Break it down into small pieces, it's not a complicated assignment.
In python:
if 8 < user_grade < 13:
print("in high school")
You would just need to supply the value of the user_grade variable.