croatia = ['c=', 'c-', 'dz=', 'd-', 'lj', 'nj', 's=', 'z=']
c_alphabet = input()
c_alphabet_list = list()
for c in croatia:
while True:
if c in c_alphabet:
c_alphabet = c_alphabet.replace(c, '?', 1)
c_alphabet_list.append(c)
else:
break
alphabets_without_croatia = c_alphabet.replace('?', '')
num = len(c_alphabet_list) + len(alphabets_without_croatia)
print(num)
c_alphabet = c_alphabet.replace(c, '?', 1)
처럼 같은 변수에 값을 다시 재할당 해주었다.immutable 한 객체들은 call by value 의 속성을 띄고 있다.