Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.4k views
in Technique[技术] by (71.8m points)

Convert int into str while in __getitem__ Python 2.7

Okay, i have this string:

string = "HelloWorld"

And for this example, I am using a dictionary similar to this:

dic = [{'a':'k','b':'i'},{'a':'i','b':'l'},{'a':'x','b':'n'},{'a':'q','b':'o'}]

Now.. I need to reference a dictionary from the list, so that I can change the characters in my string. To do so normally I would just do this:

dic[#]

But in this case I also need a value from that dictionary. Now I tried this:

dic[int(char[i[letter]])]

But I get the error:

'int' object has no attribute '__getitem__'

Searching for the error gives me answers here on StackOverflow, but they do not fix my problem.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Here's my best crystal ball guess at what you want. The keys of your dictionary are only a and b, which aren't any characters in HelloWorld, but if you actually had characters from your string as keys like the following, this is how I'd do the replacement, assuming you want to rotate through the four different dictionaries:

string = "HelloWorld"
D = [{'H':'a','o':'e','l':'i'},{'e':'b','W':'f','d':'j'},{'l':'c','o':'g'},{'l':'d','r':'h'}]
print ''.join(D[i%4][c] for i,c in enumerate(string))

Output:

abcdefghij

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...