mirror of
https://github.com/Ladebeze66/llm_lab.git
synced 2026-03-27 23:23:47 +01:00
5 lines
123 B
Python
5 lines
123 B
Python
class Filenames:
|
|
unicode = 'smörbröd.py'
|
|
latin_1 = unicode.encode('latin-1')
|
|
utf_8 = unicode.encode('utf-8')
|