From a2fe16e371ddca03bbecbb75ebe831dcc9089753 Mon Sep 17 00:00:00 2001 From: Antonino698 Date: Mon, 30 Oct 2023 18:44:10 +0100 Subject: [PATCH] Update binary_converter.py --- src/binary_converter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/binary_converter.py b/src/binary_converter.py index 6a798e6..843e7b6 100644 --- a/src/binary_converter.py +++ b/src/binary_converter.py @@ -11,7 +11,7 @@ def print_binary_number(n: int) -> None: return print_binary_number(n//2) print(n&1, end="") - + k=int(input("Inserisci un numero\n")) print_binary_number(k) print()