summaryrefslogtreecommitdiff
path: root/progs/a20.py
blob: 295d10f5c92f55737cbbddfa48182e8f369575ba (plain)
1
2
3
def increment_numerics(test_list, K):
  res = [str(int(ele) + K) if ele.isdigit() else ele for ele in test_list]
  return res