Files
micropython/tests/basics/unicode.py

4 lines
74 B
Python

s = "asdf©qwer"
for i in range(len(s)):
print("s[%d]: %s"%(i, s[i]))