Skip to content

Commit

Permalink
Update binary_converter.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Antonino698 authored Oct 30, 2023
1 parent 4e8ddd7 commit a2fe16e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/binary_converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

0 comments on commit a2fe16e

Please sign in to comment.