python练手_52-按位或
2019-02-17 本文已影响0人
学子CH
# -*- coding:utf-8 -*-
# @Author: CH
"""
@project: python study
@time:2019/1/7-23:40
@file_name:【程序52】按位或.py
@IDE:PyCharm
@else: DO NOT STOP STUDYING!!!
# """
# 题目 学习使用按位或 | 。
#
# 程序分析 0|0=0; 0|1=1; 1|0=1; 1|1=1
a=0o77
print(a|3)
print(a|3|7)