From Scratch Code
About
Mentorship
Courses
Blog
Ozark
Ozark is currently in beta. If you run into anything unexpected, feel free to file an issue
on GitHub
.
Inspect Python from source to bytecode, powered by
Memphis
.
a = 2 == 2 == 2 # True b = 2 == 2 == 22 # False c = 2 == 2 == 2 < 3 # True d = 1 < 2 < 3 < 4 # True e = 1 < 2 < -3 < 4 # False f = 1 < 2.0 < 3 # True g = 2 in [1,2,3] in [[1,2,3],[4,5,6]] # True h = 2 in [1,2,3] in [[4,5,6]] # False
Tokens
Bytecode
Success!
See error.