I was just testing a little python maths and I could not multiply numbers! I am really confused because I thought this simple code would work:
test = raw_input("answer")
new = test * 5
print new
Instead, it just gave whatever I wrote five times next to each other. E.g I write 8 and it prints 88888! Can somebody explain this?