"hehe"、 "elif"-> "haha"、 "else"-> "hihi"?-6ren"> "hehe"、 "elif"-> "haha"、 "else"-> "hihi"?-如何更改函数名称,以便 Python 将 hehe 读为 if,haha 为 elif,hihi 为 else。现在的代码是这样的: if x == 7 or x == 2: print(":-6ren">
gpt4 book ai didi

python - 如何重命名内置函数,例如 "if"-> "hehe"、 "elif"-> "haha"、 "else"-> "hihi"?

转载 作者:行者123 更新时间:2023-12-05 04:22:59 27 4
gpt4 key购买 nike

如何更改函数名称,以便 Python 将 hehe 读为 if,haha 为 elif,hihi 为 else。现在的代码是这样的:

if x == 7 or x == 2:
print(":)")
elif x == 3:
print(":(")
else:
print(":|")

我希望我的代码是这样的:

hehe x == 7 or x == 2:
print(":)")

haha x == 3:
print(":(")
hihi:
print(":|")

我想更改每个函数的名称,使代码完全不可读。这没有实际用途,我只是想把它做成一个有趣的东西。我试图制作一个编译器并且我有一些类似于 basic 的东西,但我想在不创建编译器的情况下用 Python 制作它。应该有一个字典的解决方案,格式如下:

dict = {
"if": "hehe"
"elif": "haha"
"else": "hihi"
}

但我不知道如何让它在代码中工作,所以我可以在之后用这种“新语言”编写代码

最佳答案

我还没有花时间在这上面(它可以改进),这是我第一次使用 tokenize模块,但这是我想出的。

当我在寻找 python 解析器时,我找到了这个模块,它基本上解析 python 代码并对其进行分类,从那里你可以用它做你想做的事。

from token import DEDENT, INDENT, NEWLINE
import tokenize
result = ''

names = {
'if': 'hehe',
'elif': 'haha',
'else': 'hihi',
# Add here all the other names, that you want to change, and don't worry about a name occurring inside a string it will not be changed
}
# open the script you want to encrypt in a tokenize file object
with tokenize.open('z.py') as f:
# create a new tokenize object and feed it the lines
tokens = tokenize.generate_tokens(f.readline)
# for every token in all the tokens in the file:
for token in tokens:
if names.get(token[1]): # token[1] is the string of the token i.e 'if', 'for', '\n', 'or' etc
result += names.get(token[1]) + ' '
elif token.type == NEWLINE or token[1] == INDENT or token.type == DEDENT:
result += token[1]
print(result)
else:
result += token[1] + ' '


with open('z.py', 'w') as f:
f.write(result)

更新

之前的代码,只进行了编码,稍作改动,您可以重用相同的代码对脚本进行解码和编码:

from token import DEDENT, INDENT, NEWLINE
import tokenize

encode_name = {
'if': 'hehe',
'elif': 'haha',
'else': 'hihi',
}

def code(name, encode=True):
if encode:
names = name
else:
# flip the dict, keys become values and vice versa
names = {v: k for k, v in name.items()}

result = ''
with tokenize.open('z.py') as f:
tokens = tokenize.generate_tokens(f.readline)
for token in tokens:
if names.get(token[1]):
result += names.get(token[1]) + ' '
elif token.type == NEWLINE or token[1] == INDENT or token.type == DEDENT:
result += token[1]
else:
result += token[1] + ' '

with open('z.py', 'w') as f:
f.write(result)


code(encode_name, encode = False)

查看 official docs有关更多信息,我自己不是专家,但请不要犹豫,在这里问任何问题。

很乐意帮忙祝你好运,编码愉快

关于python - 如何重命名内置函数,例如 "if"-> "hehe"、 "elif"-> "haha"、 "else"-> "hihi"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/73843805/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com