summaryrefslogtreecommitdiff
path: root/python/conversioneBinariaDec.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/conversioneBinariaDec.py')
-rw-r--r--python/conversioneBinariaDec.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/python/conversioneBinariaDec.py b/python/conversioneBinariaDec.py
new file mode 100644
index 0000000..cf1087b
--- /dev/null
+++ b/python/conversioneBinariaDec.py
@@ -0,0 +1,30 @@
+from math import pow
+
+b = 32
+v = []
+
+for i in range(b):
+ v.append(0)
+
+str = raw_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)) \ No newline at end of file