for的骚用法

Posted run_qin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了for的骚用法相关的知识,希望对你有一定的参考价值。

正常的
def pig_it():
word = ‘Pig latin is cool ‘
wordList = word.split()
re = ‘‘
for item in wordList:

if item.isalpha():
head = item[1:]
ass = item[0]+‘ay‘
temp = head+ass+‘ ‘
else:
temp = item+‘‘
re += temp
re.strip()
print(re)
骚一点的
def pig_it_final():
word = ‘Pig latin is cool !‘
print(‘ ‘.join([item[1:] +item[0]+‘ay‘ if item.isalpha() else item for item in word.split()]))
return ‘ ‘.join([item[1:] +item[0]+‘ay‘ if item.isalpha() else item for item in word.split()])

if __name__ == ‘__main__‘:
pig_it_final()

以上是关于for的骚用法的主要内容,如果未能解决你的问题,请参考以下文章

v-for的四种用法

bat中的“for”的用法。~

for循环 switch foreach用法合区别

责任链模式的高级用法:多级校验工作流,这样写代码才足够优雅!

C++ STL for_each 的用法?

python中for循环的用法