xl999
发表于 2019-8-20 15:31:25
看看怎么解的
qq8411450
发表于 2019-8-20 17:29:53
{:10_257:}
hxj123
发表于 2019-9-3 20:59:22
print(*"IloveFishC.com", sep="\n")
小陨aoq
发表于 2020-7-31 21:24:50
def print_str(string):
str_list = list(string)
if str_list:
print(str_list.pop(0))
print_str("".join(str_list))
19971023
发表于 2020-8-6 10:27:24
1
胡言不如陈末
发表于 2020-8-6 15:13:01
看看
aironeng
发表于 2020-12-9 08:43:02
学习
qqwertyuiopp
发表于 2020-12-12 11:10:03
print(*str1, sep='\n')
不会起名字的我
发表于 2020-12-12 11:20:05
take a look
cdzjf
发表于 2020-12-12 11:25:05
这个题目不错啊
guo1186874557
发表于 2020-12-12 15:51:47
str1 = 'IloveFishC.com'
list1=list(str1)
def printfunction(a,b):
if b==len(a):
return
else:
print(a)
printfunction(a,b+1)
printfunction(list1,0)
holiday_python
发表于 2021-4-13 07:27:47
看看