For example:
a = [5,3,7,5]
b = a
b.sort()
print a
print b
a = [3,5,5,7]
b = [3,5,5,7]
I don't want the programm to change a. How can I avoid this?
PS: Yes i know the question has been asked before, but these questions were asked for C or C#, not Python.