Post

@PythonPr B — hello HELLO
upper() doesn’t modify x, it creates a new string for y.
English

@PythonPr B....Converts each argument to a string
Joins them with a separator
Outputs the result
English

@PythonPr since '.upper()' converts all strings in to capital cases, the print statement will give the answer B.
English

@PythonPr The answer is B
This is because before the y variable is being printed, it's value has been declared to be the upper case of the x variable.
So we're printing (x, y), which gives hello (x) and HELLO (y) 👍
English
































