1 Star 0 Fork 2

eetigite/python100

forked from Yonja/python100 
Create your Gitee Account
Explore and code with more than 14 million developers,Free private repositories !:)
Sign up
文件
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
python82.py 315 Bytes
Copy Edit Raw Blame History
zhangweizhi authored 2016-06-04 15:16 +08:00 . the 100 theme
#!/usr/bin/python
# -*- coding: UTF-8 -*-
"""
八进制转换为十进制
"""
if __name__ == '__main__':
n = 0
p = []
for j in range(2):
p.append(input('input a octal number:\n'))
# p = input('input a octal number:\n')
for i in range(2):
n = n + p[i] * 8 ** i
# m = int(p,8) # 第二种方法
print n
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/eetigite/python100.git
git@gitee.com:eetigite/python100.git
eetigite
python100
python100
master

Search