python#Stringのreplace()

str1=’Hello world’
str1.replace(‘world’,’all’)

この場合はstr1はまだ変わってないままです。それはPythonの文字列が修正できないのことなので、先のstr1.replace()は str1を変わることではなく新しい文字列がReturn してくるので、以下のように修正すればOKです:

str1=str1.replace(‘world’,’all)

Footer_Basic

Please Support some devices for my blog

Amazon Gift List

Find ME

Twitter:@3threes2
Email:soup01threes*gmail.com (* to @)
YoutubeChannel:https://www.youtube.com/channel/UCQ3CHGAIXZAbeOC_9mjQiWQ

シェアする

  • このエントリーをはてなブックマークに追加

フォローする