From 673caad1a2aa97de808718bcb2201cd80f22eb0a Mon Sep 17 00:00:00 2001 From: Jon Moon Date: Sun, 4 Oct 2020 20:18:26 +0100 Subject: [PATCH] add hexToDecimal.py --- hexToDecimal.py | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 hexToDecimal.py diff --git a/hexToDecimal.py b/hexToDecimal.py new file mode 100644 index 0000000..f7d2761 --- /dev/null +++ b/hexToDecimal.py @@ -0,0 +1,2 @@ +# Converts a given Hexadecimal Number into a decimal number +Decimal = int(s, 16)