10 best developer articles you have to read.
https://medium.com/@prottaykarim/10-best-developer-articles-you-have-to-read-3fd2e8e1586d
https://medium.com/@prottaykarim/10-best-developer-articles-you-have-to-read-3fd2e8e1586d
Medium
10 best developer articles you have to read.
In the Developer community there are many articles posted everyday. So today in this same average post, I am going to share 12 articles you…
How to create a URL Shortner application using Python Tkinter
https://atharvayadav.medium.com/how-to-create-a-url-shortner-application-using-python-tkinter-5b450b56e1f6
https://atharvayadav.medium.com/how-to-create-a-url-shortner-application-using-python-tkinter-5b450b56e1f6
Medium
How to create a URL Shortner application using Python Tkinter
Create a URL Shortener app using Python with good looking GUI.
报错:UnicodeDecodeError: ‘gbk‘ codec can‘t decode byte 0x80 in position 20: illegal multibyte sequence
https://juejin.cn/post/6989584843805818887
https://juejin.cn/post/6989584843805818887
juejin.cn
报错:UnicodeDecodeError: ‘gbk‘ codec can‘t decode byte 0x80 in position 20: illegal multibyte sequence
翻译过来大致意思就是:gbk编码器不能解码位置在20的字节0x80:非法多字节序列。原因显而易见,with open打开文件的时候没有指定编码格式,默认使用了gbk,所以导致此次报错。