Quick actions

cmd+k|ctrl+k

Navigation

Languages

Operator

Snippet info

Language

Python

Visibility

public

Author

matrix19r

Created

2025-12-10T21:16:47.549941Z

Updated

2025-12-10T21:31:10.522935Z

print((5 + 4) * 10 / 2)
print(((5 + 4) * 10) / 2)
print((5 + 4) * (10 / 2))
print(5 + (4 * 10) / 2)
print(5 + 4 * 10 // 2)
print(bin(5))
print(int('0b101', 2))
INFO