Created
July 3, 2014 15:23
-
-
Save bryanyang0528/ad6bb4f9148c81b9369f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
text = "AbCdEf" | |
text[0] = "1" | |
--------------------------------------------------------------------------- | |
TypeError Traceback (most recent call last) | |
<ipython-input-10-639914bf643c> in <module>() | |
1 | |
2 text = "AbCdEf" | |
----> 3 text[0] = "1" | |
TypeError: 'str' object does not support item assignment |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment