1
0
mirror of https://gitlab.com/80486DX2-66/gists synced 2024-12-24 22:59:49 +05:30

Python: add ASCII_to_CJK.py

This commit is contained in:
Intel A80486DX2-66 2024-02-18 15:54:34 +03:00
parent 07cadd5e87
commit d1026e247c
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B

View File

@ -0,0 +1,91 @@
#!/usr/bin/python3
# ASCII_to_CJK.py
#
# Author: Intel A80486DX2-66
# License: Creative Commons Zero 1.0 Universal
ASCII_to_CJK = {
" ": "\u3000",
"!": "",
"#": "",
"$": "",
"%": "",
"&": "",
"'": "",
"(": "",
")": "",
"*": "",
"+": "",
",": "",
"-": "",
".": "",
"/": "",
"0": "",
"1": "",
"2": "",
"3": "",
"4": "",
"5": "",
"6": "",
"7": "",
"8": "",
"9": "",
"=": "",
"?": "",
"@": "",
"A": "",
"B": "",
"C": "",
"D": "",
"E": "",
"F": "",
"G": "",
"H": "",
"I": "",
"J": "",
"K": "",
"L": "",
"M": "",
"N": "",
"O": "",
"P": "",
"Q": "",
"R": "",
"S": "",
"T": "",
"U": "",
"V": "",
"W": "",
"X": "",
"Y": "",
"Z": "",
"a": "",
"b": "",
"c": "",
"d": "",
"e": "",
"f": "",
"g": "",
"h": "",
"i": "",
"j": "",
"k": "",
"l": "",
"m": "",
"n": "",
"o": "",
"p": "",
"q": "",
"r": "",
"s": "",
"t": "",
"u": "",
"v": "",
"w": "",
"x": "",
"y": "",
"z": ""
}
print("".join(map(lambda character: ASCII_to_CJK.get(character, character),
input())))