python 三種方法實現字串倒序顯示

2022-10-03 18:09:11 字數 1262 閱讀 1589

import pytest

@pytest.fixture()

def init(request):

str_1 = 'hello 8888'

print('第一種方法')

str_5 = str_1[::-1]

print('第二種方法')

str_6 = list(str_1)str_6.reverse()print("替換前的字串",str_1)

print("第一種倒序排列的字串",str_5)

print("第二種倒序排列的字串",''.join(str_6))

@pytest.fixture()

def reverse_zifuchuan():

str_1 = 'hhhhh kkkk gggg'

c = len(str_1) - 1

str_7 =

while (c > 0):

c -= 1

print('第三種倒序排列後的字串', ''.join(str_7))

Python 三種方法字串轉字典

eval 不安全,容易被使用者惡意操作 ast.literal eval 安全,專門用於字串型別轉換其他型別 json 只能轉換外單引號,內雙引號的字串 eval和literal eval coding utf 8 import json,ast todo 內單引號,外雙引號 s 產品 todo 外...

Python 實現字串倒序的三種方法

方法1 使用字串的分片截圖功能 推薦方法 str 2 我的世界因為有你才會美 字串分片截圖功能,從尾到頭截圖,步長為 1即倒序擷取 print str 2 1 方法2 使用列表的reverse 函式 str 1 abccdef 將字串轉換為list列表 lst list str 1 對列表進行反轉操...

搜尋字串的三種方法

cpp file fp tfopen szxmlfilepath,l rb if fp null return fseek fp,0,seek end uint nlen ftell fp fseek fp,0,seek set 寬字元型別 wchar t pstr read new wchar t...