while循环

test = "郑建文妹子有种从我来"

index = 0
while index < len(test):
    v = test[index]
    print(v)
    index += 1
print("=======")
原文地址:https://www.cnblogs.com/heluobing/p/10776050.html