有没有哥们,可以把这个js代码转化为python代码${(new Date).getTime().toString(36)}_${Math.random().toString(36).replace(/^0./, "")}
,
执行的结尾为:'lcoya8mh_0o5iu4xn0rm' (结果为随机产生的)
有没有哥们,可以把这个js代码转化为python代码${(new Date).getTime().toString(36)}_${Math.random().toString(36).replace(/^0./, "")}
,
执行的结尾为:'lcoya8mh_0o5iu4xn0rm' (结果为随机产生的)
以下 Python 代码来生成与上述 JavaScript 代码相同的结果:
import time
import random
timestamp = time.time()
timestamp_str = str(int(timestamp)).replace('-', '')
random_str = ''.join(random.choices(string.ascii_lowercase + string.digits, k=12))
result = f"{timestamp_str}_{random_str}"
print(result)
上述代码使用 Python 的 time 库获取当前时间戳,然后使用 random 库生成一个 12 位的随机字符串。最后,将时间戳字符串和随机字符串拼接起来,就可以得到与 JavaScript 代码相同的结果。