hqrabbit
发表于 2017-9-20 10:27:16
学习学习
SuperBoy007
发表于 2017-9-20 11:00:51
for each in string:
print(each)
zhiaiji
发表于 2017-9-20 17:02:10
看答案
why502b
发表于 2017-9-20 20:46:50
str1 = 'IloveFishC.com'
for i in str1:
print(i,end='\n')
chenjiang
发表于 2017-9-21 00:10:16
vbbb
baobaovn
发表于 2017-9-21 14:20:08
来学习学习。。
timeislife
发表于 2017-9-21 19:18:25
本帖最后由 timeislife 于 2017-9-21 19:24 编辑
str1 = 'IloveFishC.com'
"/n".join(str1)
Mr.Mamba
发表于 2017-9-21 21:04:21
看看怎么解的
行在绝壁
发表于 2017-9-22 10:22:11
学习学习
迷失的飞鱼
发表于 2017-9-22 13:05:11
str1 = 'IloveFishC.com'
str1 = list(str1)
str1 = '\n'.join(str1)
print(str1)
Heaosh
发表于 2017-9-23 02:10:07
woyaoyubia
·智能战士·
发表于 2017-9-23 16:55:25
str1 = 'IloveFishC.com'
str1='\n'.join(str1)
print(str1)
867015935
发表于 2017-9-23 17:29:43
str1 = 'IloveFishC.com'
for each in str1:
print(each,end='\n')
concrete
发表于 2017-9-23 18:18:49
import itertools
str1 = 'IloveFishC.com'
length = len(str1)
x = itertools.cycle(str1)
for i in range(length):
print(next(x),end='\n')
3456589807
发表于 2017-9-24 01:05:19
答案
Anmmy0204
发表于 2017-9-24 09:52:03
print('\n'.join(str1))
Anmmy0204
发表于 2017-9-24 09:53:26
print('\n'.join(str1))
youngo
发表于 2017-9-24 10:47:39
看看大家都是怎么做的{:5_91:}{:5_90:}
廿二岁
发表于 2017-9-24 13:52:25
看看
Jonah_Bare
发表于 2017-9-24 14:32:04
str1 = 'IloveFishC.com'
for each in str1:
print(each,end='\n')