mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-01-18 16:27:02 +00:00
fix comma spelling from coma to comma (#722)
This commit is contained in:
parent
2bbf8cd109
commit
dd9f0b3f2e
|
@ -43,7 +43,7 @@ def linear_search(sequence, target):
|
|||
|
||||
|
||||
if __name__ == '__main__':
|
||||
user_input = raw_input('Enter numbers separated by coma:\n').strip()
|
||||
user_input = raw_input('Enter numbers separated by comma:\n').strip()
|
||||
sequence = [int(item) for item in user_input.split(',')]
|
||||
|
||||
target_input = raw_input('Enter a single number to be found in the list:\n')
|
||||
|
|
Loading…
Reference in New Issue
Block a user