Bus ticket booking basic code using python
def getstopnum(s,details): for q in details[2]: if s in (details[2][q]).upper()+(details[2][q]).lower(): return int(q) return None def searchjn(jn): flag=False for i in journeys: if jn==i: return True return False def order(stops): ordered={} for i in range(len(stops)): ordered[(i+1)]=stops[i] return o...