summaryrefslogtreecommitdiff
path: root/progs/a18.py
blob: 3b6d7cecc31b5ca0a811adb4a111c25d2a8f6a44 (plain)
1
2
3
4
5
6
7
8
9
10
def move_num(test_str):
  res = ''
  dig = ''
  for ele in test_str:
    if ele.isdigit():
      dig += ele
    else:
      res += ele
  res += dig
  return (res)