当前位置: 首页 > 知识库问答 >
问题:

如何使变量可迭代?

赏星河
2023-03-14

有没有办法在for循环中使变量可迭代?我正在尝试制作一个密码生成器,对于for循环,我使用一个输入数字的变量。

for lists in(nr_letters):
    thing_ = letters[stuff]
    thing_ + other_thing

当我试图在循环中使用变量时,我得到< code > ' int ' object is not iterable 。

共有1个答案

谷泳
2023-03-14

呃…有点像

possible_chars = [ 'a', 'b', 'c', ...]
nr_letters = int(input('enter password length'))
password = ''
for _ in range(nr_letters):
    token = pick_at_random_from(possible_chars, 1)
    password = password + token
return password

像这样?

对于随机选择函数,您可以查看 https://docs.python.org/3/library/random.html#random.choice

在评论之后,我重写了它们并将它们修复为功能

import random
letters = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z']
numbers = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'] 
symbols = ['!', '#', '$', '%', '&', '(', ')', '*', '+']

print("Welcome to the PyPassword Generator!") 
nr_letters= int(input("How many letters would you like in your password?\n"))
nr_symbols = int(input(f"How many symbols would you like?\n")) 
nr_numbers = int(input(f"How many numbers would you like?\n"))

#create a list of pairs (list, number of chars)
lists = [ (letters, nr_letters), (symbols, nr_symbols), (numbers, nr_numbers)]
password = '' # this is our building block in which we accumulate the choiches

for collection, size in lists: # iterate through a list
    for _ in range(size): # For how many chars we want from that list
        i = random.randint(0, size) # pick a random index
        token = collection[i] # pick the random item using the index
        password = password + token # add the item to the password

print(password) # show the password

 类似资料:
  • 此代码未编译,因为被视为

  • 问题内容: 我有一个带有参数的函数,该参数可以是单项或双项: 以便: 问题是字符串在技术上是可迭代的,因此在尝试时我不能只捕捉ValueError 。我不想使用isinstance(),因为这不是一个好习惯(或者有人告诉我)。 问题答案: 使用isinstance(我不明白为什么这是不好的做法) 请注意StringTypes的使用。它确保我们不会忘记一些晦涩的字符串类型。 从好的方面来说,这也适用

  • 问题内容: 我如何在for循环中创建变量变量? 这是循环: 在此循环中,我想为每次传递创建一个$ seat变量,但必须像这样递增。第一次通过应该是,下次通过:等等。 所以最后应该是: 等等。 因此$ _POST的变量和内容应该是动态的。 问题答案: 首先,除非缺少某些内容,否则我将为此使用数组。具有像变量,等趋于具有少得多的效用和是更为繁琐比使用的阵列。 话虽这么说,使用以下语法: 最后,PHP具

  • 问题内容: 我有一个自定义类对象(下面是示例)。 使用:我想将所有子列表“合并”到一个大列表中。因此,我认为我需要使自定义类成为可迭代的。 这是我的自定义类的示例。 我实现了,但是似乎没有用。他们甚至没有被召集。 知道我做错了什么吗? 注意:使用Python 3.3 问题答案: 当您尝试遍历类实例时调用的是什么: 是在返回的对象上调用的内容(在python2.x上,不是,我一般都对它们都使用别名,

  • 变量绑定默认是不可变的,但加上 mut 修饰语后变量就可以改变。 fn main() { let _immutable_binding = 1; let mut mutable_binding = 1; println!("Before mutation: {}", mutable_binding); // 正确代码 mutable_binding += 1

  • 问题内容: 我想知道如何将变量传递给我的所有模板,而无需在views.py文件中的每个方法上重复相同的代码? 在下面的示例中,我想使类别(类别对象的数组)可用于Web应用程序中的所有模板。 一种查看方法 另一种查看方法 问题答案: 你需要的是上下文处理器,创建一个上下文处理器非常容易。假设你有一个名为的应用custom_app,请执行以下步骤: 加入到 在(你已经做了了,对不对?); 创建一个文件