summaryrefslogtreecommitdiff
path: root/progs/a857.py
blob: 39fba8c0b2f39089caeebeee616f5d36d306fe94 (plain)
1
2
3
def binary_to_integer(test_tup):
  res = int("".join(str(ele) for ele in test_tup), 2)
  return (str(res))