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 發表在 痞客邦 留言(0) 人氣()