Use ==/!= to compare str, bytes, and int literals $ python ```python >>> method = 'Mi' >>> method += 'n' >>> method == 'Min' True >>> method is 'Min' False ```
Use ==/!= to compare str, bytes, and int literals $ python ```python >>> method = 'Mi' >>> method += 'n' >>> method == 'Min' True >>> method is 'Min' False ```