Python 随机生成おみくじ程序 - Fortune.py
st0001_yourname\nimport random\n\nfortunes = ['\u5927\u5927\u5409', '\u5409', '\u5c0f\u5409', '\u51f6', '\u5927\u51f6']\n\nrandom_index = random.randint(0, len(fortunes)-1)\nfortune = fortunes[random_index]\n\nprint(fortune)
原文地址: https://www.cveoy.top/t/topic/qENT 著作权归作者所有。请勿转载和采集!