Okay, I appreciate everyone's help!
i am trying to work out how to find a duration type thing.. i have created this as an example of what i am trying to do.
### gaining inputs
start= raw_input("What time did the tv show start: (Format = 14, 12) ")
finish= raw_input("What time did the tv show finish: (Format = 14, 12) ")
### attempting to turn the hours into mins, and adding them to the mins
m= start[0]*60+start[1]
n= finish[0]*60+finish[1]
### turning into intergers
m2= int(m)
n2= int(n)
### finding the tv show duration
duration= n2-m2
### prints the duration in mins of the tv show
print "TV Show Duration:" duration
raw_input("\n\nPress the enter key to exit.")
could someone please tell me what im doing wrong, and provide me with a fix?
this has being my biggest issue.
cheers.
jase.