# -*- coding:utf-8 -*-
# @Author: CH
"""
@project: python study
@time:2019/1/7-23:40
@file_name:【程序53】按位异或.py
@IDE:PyCharm
@else: DO NOT STOP STUDYING!!!
"""
# 题目 学习使用按位异或 ^ 。
#
# 程序分析 0^0=0; 0^1=1; 1^0=1; 1^1=0
a=0o77
print(a^3)
print(a^3^7)
# -*- coding:utf-8 -*-
# @Author: CH
"""
@project: python study
@time:2019/1/7-23:40
@file_name:【程序53】按位异或.py
@IDE:PyCharm
@else: DO NOT STOP STUDYING!!!
"""
# 题目 学习使用按位异或 ^ 。
#
# 程序分析 0^0=0; 0^1=1; 1^0=1; 1^1=0
a=0o77
print(a^3)
print(a^3^7)
本文标题:python练手_53-按位异或
本文链接:https://www.haomeiwen.com/subject/woameqtx.html
网友评论