The output of the following two Python codes is exactly the same.
object'a'CODE 1>>> pickle.dumps('a', 3)CODE 2>>> pickle.dumps(object, 3)
object'a'CODE 1>>> pickle.dumps('a', 3)CODE 2>>> pickle.dumps(object, 3)The output of the following two Python codes is exactly the same.
object'a'CODE 1>>> pickle.dumps('a', 3)CODE 2>>> pickle.dumps(object, 3) Correct Answer True
মোঃ আরিফুল ইসলাম
Feb 20, 2025