为了账号安全,请及时绑定邮箱和手机立即绑定

如何在 python 函数之外使用递增变量?

如何在 python 函数之外使用递增变量?

Go
慕婉清6462132 2022-10-06 19:34:57
这可能是一个愚蠢的问题;也许我的过程完全错误(如果是,请指出),但是如何在自定义函数中提取三个递增变量(c_char、c_word、c_sentence)并将其用于其他用途?def length_finder(x):    #variables counting character,word,sentnece      c_char = 0    c_word = 1    c_sentence = 0    for i in x:        if (i >= 'a' and i <= 'z') or (i >= 'A' and i <= 'Z'):            c_char += 1        if i == " ":            c_word += 1        if i == '.' or i == '!' or i == '?' :            c_sentence += 1length_finder(input("Enter the text you wish to analyze: "))L = 100/c_word*c_charS = 100/c_word*c_sentence#formula to get readabilityindex = 0.0588 * L - 0.296 * S - 15.8print("This text is suitable for grade " + str(index))
查看完整描述

2 回答

?
眼眸繁星

TA贡献1873条经验 获得超9个赞

您可以return在函数中使用多个变量:


def length_finder(x):

    ...

    return (c_char, c_word, c_sentence)



(c_char, c_word, c_sentence) = length_finder('input string')


查看完整回答
反对 回复 2022-10-06
?
胡说叔叔

TA贡献1804条经验 获得超8个赞

你有两个选择。

  1. 将这三个变量设为全局变量,并在函数中引用它们。您可以将它们设为全局,然后在函数中将它们作为全局引用。

  2. 从函数中返回它们。您可以将所有 3 个值作为字典或列表返回。


查看完整回答
反对 回复 2022-10-06
  • 2 回答
  • 0 关注
  • 83 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信