In python what will be the value of the variable string after the following code executes?
string = 'abcd'
string.upper()
1) 'ABCD'
2) Nothing; this code is invalid
3) 'Abcd'
4) 'abcd'