“模块”对象不可调用-另一个文件中的调用方法

“模块”对象不可调用-另一个文件中的调用方法,第1张

“模块”对象不可调用-另一个文件中的调用方法

问题出在

import
生产线上。您正在导入 模块
,而不是类。假设您的文件已命名
other_file.py
(与Java不同,同样,不存在“一个类,一个文件”之类的规则):

from other_file import findTheRange

如果您的文件也被命名为findTheRange,在java的约定下,那么您应该编写

from findTheRange import findTheRange

您也可以像导入时一样导入它

random

import findTheRangeoperator = findTheRange.findTheRange()

其他一些评论:

a)@Daniel Roseman是正确的。您根本不需要这里的课程。Python鼓励过程式编程(当然,适合的话)

b)您可以直接构建列表:

  randomList = [random.randint(0, 100) for i in range(5)]

c)您可以像在Java中一样调用方法:

largestInList = operator.findLargest(randomList)smallestInList = operator.findSmallest(randomList)

d)您可以使用内置函数以及庞大的python库:

largestInList = max(randomList)smallestInList = min(randomList)

e)如果您仍然想使用一个类,并且不需要

self
,则可以使用
@staticmethod

class findTheRange():    @staticmethod    def findLargest(_list):        #stuff...


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5632290.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存