鱼C论坛

 找回密码
 立即注册
12
返回列表 发新帖
楼主: MSK

[技术交流] Python:每日一题 80(答题领鱼币)

[复制链接]
发表于 2017-8-21 14:01:53 | 显示全部楼层
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2017-8-21 14:57:15 | 显示全部楼层
本帖最后由 sunnychou 于 2017-8-21 15:07 编辑

s1 = 'ass hello world'
def rev_string(s1):
    s1 = s1.split()#返回的是字符串列表
    s = []
    for  each in s1:
        s.append(each[::-1])
    return ' '.join(s)
print(rev_string(s1))
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2017-8-21 15:07:58 | 显示全部楼层
s1 = 'ass hello world'
def rev_string(s1):
    s1 = s1.split()#返回的是字符串列表
    s = []
    for  each in s1:
        s.append(each[::-1])
    return ' '.join(s)
print(rev_string(s1))
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2017-8-22 10:47:59 | 显示全部楼层
不是说可以领鱼币吗
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2017-9-13 12:40:00 From FishC Mobile | 显示全部楼层
为什么,我这个没有输出呀?求解答
P70913-123927.jpg
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2017-12-5 09:36:22 | 显示全部楼层
本帖最后由 shigure_takimi 于 2017-12-5 09:38 编辑
def reverse_string(string):
    s = string.split(' ')
    newS = [''.join(list(reversed(word))) for word in s]
    print(' '.join(newS))

# 把s, newS代入print,变成:

def reverse_string2(string):
    print(' '.join([''.join(list(reversed(word))) for word in string.split(' ')]
))

reverse_string('This is an example!')
reverse_string2('This is an example!')
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2018-3-31 23:10:15 | 显示全部楼层
string="This is an example!"

def reverse_string(s):
    lst = s.split(' ')
    for i,v in enumerate(lst):
        lst[i] = v[::-1]
    return lst
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2018-4-3 21:30:10 | 显示全部楼层
看看
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2018-4-3 21:32:57 | 显示全部楼层
def reverse_string(string):
    lis = string.split()
    lis1 = []
    for i in lis:
        lis2 = []
        for j in i:
            lis2.insert(0,j)
        lis1.append(''.join(lis2))
    return ' '.join(lis1)
string = 'This is an example!'
print(reverse_string(string))
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-6-30 17:00:26 | 显示全部楼层
排序
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-8-1 10:11:19 | 显示全部楼层
1
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-12-9 09:02:05 | 显示全部楼层
学习
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-23 01:52

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表