Python oct() 函数
Python 教程
· 2019-02-01 19:43:23
描述
oct() 函数将一个整数转换成8进制字符串。
语法
oct 语法:
oct(x)
参数说明:
- x -- 整数。
返回值
返回8进制字符串。
实例
以下实例展示了 oct 的使用方法:
>>>oct(10)
'012'
>>> oct(20)
'024'
>>> oct(15)
'017'
>>>
点击查看所有 Python 教程 文章: https://www.codercto.com/courses/l/8.html
Cascading Style Sheets 2.0 Programmer's Reference
Eric A. Meyer / McGraw-Hill Osborne Media / 2001-03-20 / USD 19.99
The most authoritative quick reference available for CSS programmers. This handy resource gives you programming essentials at your fingertips, including all the new tags and features in CSS 2.0. You'l......一起来看看 《Cascading Style Sheets 2.0 Programmer's Reference》 这本书的介绍吧!