Python中沒有規定內置函數來反正字符串,若是咱們須要反轉字符串要怎麼辦呢。函數
最簡單的方法就是使用向後移動的切片,例如咱們要反轉字符串hello
:code
str1 = "hello" print("輸出反轉後的字符串:", str1[::-1]) # 輸出反轉後的字符串: olleh
若是多個地方的字符串都須要用到反轉字符串,能夠建立一個帶參函數。字符串
# 建立一個以字符串做爲參數的函數 def inverting_fun(x): # 從字符串末尾開始切割字符串並向後移動 return x[::-1] # 使用字符串做爲參數調用函數 fun = inverting_fun("This is a function for inverting strings") print(fun) # sgnirts gnitrevni rof noitcnuf a si sihT