如何将列表长度乘以数字

时间:2019-06-04 03:23:39

标签: python

我想将名为list的{​​{1}}的长度乘以一个数字。 例如:

cost_ten

在这里,我想将cost_ten = ["itemone", "itemtwo", "itemthree"] def costten_function(): (len(cost_ten)) 的长度乘以一个数字并打印该数字。

4 个答案:

答案 0 :(得分:0)

这是一个函数,它将以参数形式传递的列表的长度乘以另一个将作为乘数的参数num。

cost_ten = ["itemone", "itemtwo", "itemthree"]
def costten_function(cost_ten, num):
    return len(cost_ten) * num

print(costten_function(cost_ten, 5))

答案 1 :(得分:0)

非常容易,仅使用len函数获取列表长度并使用乘法运算符

cost_ten = ["itemone", "itemtwo", "itemthree"]
c_len = len(cost_ten)
print("value=", (c_len * your_value))

星号*是乘法运算符

答案 2 :(得分:0)

==>简单

List= len(["itemone", "itemtwo", "itemthree"]) 
print("The length of list is: ", List * desired_value) 

期望值可以是任意数字

答案 3 :(得分:0)

cost_ten = ["itemone", "itemtwo", "itemthree"]
//Change this as per your requirement
num = 9 
def costten_function():
     print("Length of list multipled by some number",len(cost_ten)*num) 

用您想要的数字替换数字