Here is my code:
#!/usr/bin/env python3.9
#-*- coding: big5 -*-
print("柯南")
It gives out an Error: SyntaxError: encoding problem: big5
.
Why it gives out this Error when I actually has specified the coding?
I know by default python is using UTF-8 and it supports traditional chinese. It will fix it
But I really just want to play around with the syntax #-*- coding: encoding -*-
and know why I get this error.