当前位置:网站首页>Binary, octal, hexadecimal
Binary, octal, hexadecimal
2022-07-07 03:57:00 【Is it far? My Shangri La】
Number to string :bin()、oct()、hex()
>>> bin(15) # Binary system
'0b1111'
>>> oct(15) # octal
'0o17'
>>> hex(15) # Hexadecimal
'0xf'
String to number :int()
>>> int('0b1111',2) # Binary system
15
>>> int('0o17',8) # octal
15
>>> int('0xf',16) # Hexadecimal
15
Format display
>>> "{0:#x}".format(0xf) # Lowercase letters , Hexadecimal number
'0xf'
>>> "{0:#X}".format(0xf) # Capital
'0XF'
>>> "{0:#x}".format(15) # Lowercase letters , Decimal number
'0xf'
>>> "{0:x}".format(15) # Lowercase letters , Decimal number , Without prefix 0x
'f'
>>> "{0:0>8x}".format(255) # Occupy 8 Bit character , Align left , repair 0
'000000ff'
边栏推荐
- Ubuntu20 installation redisjson record
- 1.19.11.SQL客户端、启动SQL客户端、执行SQL查询、环境配置文件、重启策略、自定义函数(User-defined Functions)、构造函数参数
- codeforces每日5题(均1700)-第七天
- Set WiFi automatic connection for raspberry pie
- 【mysql】mysql中行排序
- Preprocessing - interpolation
- 学习使用js把两个对象合并成一个对象的方法Object.assign()
- NoSQL之Redis配置与优化
- MySQL storage engine
- Sorting operation partition, argpartition, sort, argsort in numpy
猜你喜欢
ggplot 分面的细节调整汇总
Antd Comment 递归循环评论
什么是 BA ?BA怎么样?BA和BI是什么关系?
卡尔曼滤波-1
24. (ArcGIS API for JS) ArcGIS API for JS point modification point editing (sketchviewmodel)
Introduction to opensea platform developed by NFT trading platform (I)
Ubuntu20 installation redisjson record
22. (ArcGIS API for JS) ArcGIS API for JS Circle Collection (sketchviewmodel)
概率论公式
Baidu map JS development, open a blank, bmapgl is not defined, err_ FILE_ NOT_ FOUND
随机推荐
map和set的实现
VHDL implementation of single cycle CPU design
Kbone与小程序跨端开发的一些思考
qt-线程等01概念
Probability formula
[leetcode] 700 and 701 (search and insert of binary search tree)
One of oscp tools: dirsearch usage Encyclopedia
Simple implementation of AVL tree insertion and verification operations
什么是 BA ?BA怎么样?BA和BI是什么关系?
[security attack and Defense] how much do you know about serialization and deserialization?
维护万星开源向量数据库是什么体验
你心目中的数据分析 Top 1 选 Pandas 还是选 SQL?
Restcloud ETL Community Edition June featured Q & A
ubuntu20安装redisjson记录
QT 使用QToolTip 鼠标放上去显示文字时会把按钮的图片也显示了、修改提示文字样式
NoSQL之Redis配置与优化
Open3d mesh filtering
Allow public connections to local Ruby on Rails Development Server
The true face of function pointer in single chip microcomputer and the operation of callback function
使用 BR 恢复 GCS 上的备份数据