鱼C论坛

 找回密码
 立即注册
查看: 1950|回复: 4

[已解决]关于python中的函数问题

[复制链接]
发表于 2021-6-24 10:47:58 | 显示全部楼层 |阅读模式
3鱼币
我想写两个函数,并且通过下面的测试,请大家帮帮忙

问题一:编写一个函数 one_word(words),它接收字符串列表并使用 for... in... 循环将所有单词连接到一个字符串中(即“correcthorsebatterystaple”)。
测试:
words = ["correct", "horse", "battery", "staple"]
assert(one_word(words)=="correcthorsebatterystaple")

问题二:
编写一个函数 as_and_es(words),它使用循环计算 2𝑎+𝑒,其中 𝑎 是字母“a”在所有单词中出现的次数,而 𝑒 是字母“e”出现的次数。
测试:
words = ["correct", "horse", "battery", "staple"]
assert(as_and_es(words)==8)

最佳答案
2021-6-24 10:47:59
words = ["correct", "horse", "battery", "staple"]
def one_word(words):
    a = ''
    for i in words:
        a += i
    return a

def as_and_es(words):
    b = one_word(words)
    x = 0
    y = 0
    for j in b:
        if j == 'a':
            x += 1
        elif j == 'e':
            y += 1
    sum = 2 * x + y
    return sum
print(one_word(words))
print(as_and_es(words))

最佳答案

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-6-24 10:47:59 | 显示全部楼层    本楼为最佳答案   
words = ["correct", "horse", "battery", "staple"]
def one_word(words):
    a = ''
    for i in words:
        a += i
    return a

def as_and_es(words):
    b = one_word(words)
    x = 0
    y = 0
    for j in b:
        if j == 'a':
            x += 1
        elif j == 'e':
            y += 1
    sum = 2 * x + y
    return sum
print(one_word(words))
print(as_and_es(words))
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-6-24 10:50:27 | 显示全部楼层
重发帖吧,3个鱼币还不如不悬赏

而且这是个大活
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-6-24 10:56:15 | 显示全部楼层
def one_word(words):
      return "".join(words)

def as_and_es(words):
      word = "".join(words)
      return 2 * word.count("a") + word.count("e")
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-6-24 11:04:06 | 显示全部楼层
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-15 06:28

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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