menghasilkan nomor biner dalam python

num = int(input("Enter a number: ")) #generates a number
print(int(bin(num[2:]))) #converts the number to binary and prints it
#the [2:] is there because there is a b showing it is bnary but we dont want that in a binary number
skiibloc