Recent content by Sarah Hrmbree

  1. 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
  2. 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...
  3. 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':
Back
Top