Recent content by Sarah Hrmbree
-
S
Python Doubt regarding a basic Python operator
This might be a place for you to start: https://stackoverflow.com/questions/2096916/real-world-use-cases-of-bitwise-operators/39845029- Sarah Hrmbree
- Post #7
- Forum: Programming and Computer Science
-
S
Python Doubt regarding a basic Python operator
It depends a lot on what you are trying to do, what data you are working with. for i in range(-5,6): print(i, "->", ~i) will show you the basic basics. Beyond that there are many tutorials about working with bit arrays, bit fields, etc in Python out there. Be specific and you can...- Sarah Hrmbree
- Post #3
- Forum: Programming and Computer Science
-
S
Python What's wrong with my if-else statements in Python 3?
Your if/elif statements need to be changed to, for example: if auto_serv == 'Tirerotation' or auto_serv == 'tirerotation':- Sarah Hrmbree
- Post #3
- Forum: Programming and Computer Science