summaryrefslogtreecommitdiff
path: root/progs/a670.py
blob: 4fba8b0995c3350a8aa07ab9eaee4d38e92b8ebd (plain)
1
2
3
4
5
from copy import deepcopy
def colon_tuplex(tuplex,m,n):
  tuplex_colon = deepcopy(tuplex)
  tuplex_colon[m].append(n)
  return tuplex_colon