日付37-文字列内のCount文字
2517 ワード
--------------------------------------------🤞 My Solution -------------------------------------------
def count(string):
arr = []
for i in range(0, len(string)):
arr.append(string[i])
list = []
for i in arr:
if i not in list:
list.append(i)
result = {}
for i in list:
result[i] = string.count(i)
return result
Reference
この問題について(日付37-文字列内のCount文字), 我々は、より多くの情報をここで見つけました https://velog.io/@vivala0519/37일차テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol