1 Star 0 Fork 0

mamh-mixed/python-cookbook

Create your Gitee Account
Explore and code with more than 14 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
decimal to binary.py 273 Bytes
Copy Edit Raw Blame History
Officialahmed authored 2023-08-01 09:40 +08:00 . Added .py extension
def decimalToBinary(num):
"""This function converts decimal number
to binary and prints it"""
if num > 1:
decimalToBinary(num // 2)
print(num % 2, end='')
# decimal number
number = int(input("Enter any decimal number: "))
decimalToBinary(number)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mamh-mixed/python-cookbook.git
git@gitee.com:mamh-mixed/python-cookbook.git
mamh-mixed
python-cookbook
python-cookbook
master

Search