7 lines
121 B
Python
7 lines
121 B
Python
|
|
import sys
|
||
|
|
|
||
|
|
if "UTF-8" in sys.stdout.encoding:
|
||
|
|
print("△")
|
||
|
|
else:
|
||
|
|
raise Exception("Terminal can't handle UTF-8")
|