micropython/tests/unicode/unicode_write_count.py

8 wiersze
195 B
Python
Czysty Wina Historia

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

import sys
n_text = sys.stdout.write("🚀\n")
sys.stdout.write("{}\n".format(n_text))
n_text = sys.stdout.write("1🚀2a3α4b5β6c7γ8d9δ0ぁ1🙐\n")
sys.stdout.write("{}\n".format(n_text))