close

song="""
Whether you're new to programming or an experienced developer, it's easy to learn and use Python.
"""

print(song)


songLower = song.lower()

print(songLower)

for ch in songLower:
   
if ch in ".?,;'":
        songLower = songLower.replace(ch
,'')

print(songLower)

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 Eric 的頭像
    Eric

    一個小小工程師的心情抒發天地

    Eric 發表在 痞客邦 留言(0) 人氣()