3
AttributeError: โมดูล 'time' ไม่มี attribute 'clock' ใน Python 3.8
ฉันเขียนโค้ดเพื่อสร้างกุญแจสาธารณะและกุญแจส่วนตัว มันใช้งานได้ดีที่ Python 3.7 แต่มันล้มเหลวใน Python 3.8 ฉันไม่รู้ว่ามันล้มเหลวในเวอร์ชั่นล่าสุด ช่วยฉันด้วยวิธีแก้ปัญหาบางอย่าง นี่คือรหัส: from Crypto.PublicKey import RSA def generate_keys(): modulus_length = 1024 key = RSA.generate(modulus_length) pub_key = key.publickey() private_key = key.exportKey() public_key = pub_key.exportKey() return private_key, public_key a = generate_keys() print(a) ข้อผิดพลาดในเวอร์ชั่น Python 3.8: Traceback (most recent call last): File "temp.py", line 18, …