def hoge_r(s):
    s[1] = "1"

a = ["a","b","c"]
b = a
hoge_r(a)
print a
print b

a = "abc"
hoge_r(a)
print a
