Post

@PythonPr Output: B) 5
y is assigned the value of x at that moment (x = 5).
Reassigning x to 10 later doesn’t affect y.
Python assigns values, not references, for immutable types like integers.
English


@PythonPr Level my feed up Jesus Christ ugggh Gilfoyle go "fuck" a dildo ;)
English

@PythonPr as far as i know it will take the nearest value
English

@PythonPr B bcoz Y isnt affected with the update of X.
Only after y is updated to y=x
English

@PythonPr HTTPS doesn’t mean safe.
Unphishable v1.0 is live — detecting phishing by correlating SSL issuer type, redirects, and WHOIS opacity. 🔍

English

@PythonPr Okay looking at the code
X as been assigned a new variable which is y
It clear shows it isn’t a string cause if it is, it will be added under “_”
So the answer is 5
English

@PythonPr i) X assign the value 5
ii) Y gets the value of X 5
iii) X reassigned the value 10
iv) print(y) gets the output of Y =5
English




















