Loading query.py +0 −3 Original line number Diff line number Diff line Loading @@ -143,9 +143,6 @@ if __name__ == '__main__': exit() # checking valid index if not index: print('Please enter a valid index.') exit() if any(index < 0 or index > len(seq) for seq in sequence.split(',')): print(f'The provided index {index} is outside of the possible range of {sequence}. The first position of the index is 0.') exit() Loading Loading
query.py +0 −3 Original line number Diff line number Diff line Loading @@ -143,9 +143,6 @@ if __name__ == '__main__': exit() # checking valid index if not index: print('Please enter a valid index.') exit() if any(index < 0 or index > len(seq) for seq in sequence.split(',')): print(f'The provided index {index} is outside of the possible range of {sequence}. The first position of the index is 0.') exit() Loading