How do i make a new list containing existing list + a new string?
Const1 = "1000"
Const2 = "2000"
Const3 = "3000"
CONST_LIST = [Const1, Const2]
CONST_LIST_NEW = [CONST_LIST] + Const3 #Nogo
print CONST_LIST_NEW
Wish output..... ['1000', '2000', '3000']