2018年1月11日 星期四

Python: Prove that two string variables of same value point same memory location

Python: Prove that two string variables of same value point same memory location

Python Basic: Exercise-117 with Solution

Write a Python program to prove that two string variables of same value point same memory location.
Sample Solution:-

str1 = "Python"
str2 = "Python"

print("\nMemory location of str1 =", hex(id(str1)))
print("Memory location of str2 =", hex(id(str2)))
print()

========== RESTART: F:/Python_APSC/py-ex-basic-117.py ============

Memory location of str1 = 0x700560
Memory location of str2 = 0x700560

>>> 

沒有留言:

張貼留言

2024產專班 作業2 (純模擬)

2024產專班 作業2  (純模擬) 1) LED ON,OFF,TIMER,FLASH 模擬 (switch 控制) 2)RFID卡號模擬 (buttom  模擬RFID UID(不從ESP32) Node-Red 程式 [{"id":"d8886...