如何在Python中反轉字符串

Python中沒有規定內置函數來反正字符串,若是咱們須要反轉字符串要怎麼辦呢。函數

最簡單的方法就是使用向後移動的切片,例如咱們要反轉字符串hellocode

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
相關文章
相關標籤/搜索