Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- def print_process(li, index):
- for i in range(len(li)):
- if i == index:
- print('[{}]'.format(li[i]), end=' ')
- else:
- print('{}'.format(li[i]), end=' ')
- print()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement