I'm very new to python I've just started my first year at university, I need to write a program that prompts the user to input a value E.G "AMS 0 25 S E" and then potentially using indexing, split each of the individual values and turn them into variables which I can use in calculations.
I essentially want the user to be able to put in a flight specification and have the program make calculations and true false statements based on the input values.
a = input("Please Enter your flight specification: ") b = a.split(" ")