so = 10
print('Chuỗi nhị phân của ', so, 'là: ', bin(so))
# Ví dụ 2: Dùng __index__() để chuyển đối tượng So_luong sang nhị phân
class So_luong:
hoa_hong = 5
hoa_dao = 10
hoa_sen = 15
def __index__(sl):
return sl.hoa_hong + sl.hoa_dao + sl.hoa_sen
print('Chuỗi nhị phân của So_luong là: ', bin(So_luong()))
After running the above program, we get the output as:
Chuỗi nhị phân của 10 là: 0b1010
Chuỗi nhị phân của So_luong là: 0b11110
From now on, whenever you need to get the binary value of a number or object, you just need to use the bin () function to finish.
See more: