In Python tuples are very similar to lists, however, unlike lists they are immutable meaning they can not be changed. You would use tuples to present things that shouldn't be changed, such as days of the week, or dates on a calendar. You'll have an intuition of how to use tuples based on what you've … Continue reading Tuples
Author: theone9807
Comparison Operators in PYTHON
These operators will allow us to compare variables and output a Boolean value (True or False). If you have any sort of background in Math, these operators should be very straight forward. Table of Comparison Operators: Operator Description Example == If the values of two operands are equal, then the condition becomes true. (a == … Continue reading Comparison Operators in PYTHON
