1) hi i want to create a program where the User can input strings and it add on as list.
eg cmd : "hello "
cmd : "every "
cmd : "one "
'hello' 'every ' 'one'
a = 0
while a < 3:
b = str(raw_input("cmd : "))
list1 = [b]
a += 1
print list1
issue i am having is adding up string to list on every loop ! i am missing some logic argument for this to happen. these string i would like to assign later on to some function.