首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > perl python >

Python 入门教程 16 - Introduction to Bitwise Operators

2013-10-06 
Python 入门教程 16 ---- Introduction to Bitwise Operators 第一节1 介绍了Python的二进制2 我们利用0bx

Python 入门教程 16 ---- Introduction to Bitwise Operators


 第一节

     1 介绍了Python的二进制

     2 我们利用0bxx来表示一个二进制,比如1 = 0b1,2 = 0b10等等


 第二节

     1 介绍了Python的函数bin(x),主要是用来求10进制数x的二进制值

     2 比如bin(2)为0b10

     3 练习:打印出2~5之间的数的二进制值

print ~-4 >> 3print ~-3 >> 2print ~-1 >> 0print ~0 >> -1print ~1 >> -2print ~2 >> -2print ~3 >> -2



热点排行