Sign in
android
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
python
/
testData
/
intentions
/
demorgan
/
before4.py
blob: 7c95dbc754cb3c1fc07f30d4c7319d4cd283b5b5 [
file
] [
log
] [
blame
]
a
=
True
b
=
False
c
=
True
d
=
False
#before intention
if
a
and
b
and
c
or
<
caret
>
d
:
print
"before"