summaryrefslogtreecommitdiff
path: root/python/conversioneBinariaDec.py
blob: 2ff1bb63a254452b94b2c9d466c78a93589ef9b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from math import pow

b = 32
v = [0 for i in range(b)]

str = input('Stringa: ')

if len(str) < b:
    valVuoto = len(str)

i = b - valVuoto
j = 0

while i < b:
    v[i] = int(str[j])
    i += 1
    j += 1

i = b - 1
j = num = 0

while i > -1:
    num += v[i] * pow(2, j)
    i -= 1
    j += 1

print(int(num))