Post #1350651
2026-04-16 22:45 UTC
Python Tip #106 (of 365):
Name ambiguous unicode characters with "\N{...}"
When you need to represent a non-ASCII character, you can either:
1. Copy-paste the character directly into your file
2. Use a "\u" or "\U" prefix to represent the character by its code point
3. Use "\N" to represent the character by its name
🧵 (1/3)
#Python #DailyPythonTip
Replies (0)
No replies.