請問一下,我從網路教學資源copy了以下的code
#encrypt.py
import random
class Encrypt:
def setCode(self):
self.code = [chr(i) for i in range(97, 123)]
random.shuffle(self.code)
def getCode(self):
return "".join(self.code)
def toEncode(self):
return "toEncode"
def toDecode(self):
return "toDecode"
e = Encrypt()
e.setCode()
print()
print(e.getCode())
print(e.toEncode())
print(e.toDecode())
print()
=================
然後我在Shell裡
import encrypt
它也的確會print出字串
但當我把encrypt.py改名為test.py,然後輸入
import test
它反而不動了
為什麼呢?謝謝