mirror of
https://github.com/Ladebeze66/llm_lab.git
synced 2025-12-16 21:27:49 +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')
|