用于在Python中置换给定字符串内置函数的Python程序
给出字符串。我们的任务是显示给定字符串的排列。在此使用内置函数置换(可迭代)在python中解决此问题。
例子
Input: string = 'XYZ'
Output: XYZ
XZY
YXZ
YZX
ZXY
ZYX算法
Step 1: given string. Step 2: Get all permutations of a string. Step 3: print all permutations.
范例程式码
from itertools import permutations
def allPermutations(str1):
# Get all permutations of string 'ABC'
per = permutations(str1)
# print all permutations
print("Permutation Of this String ::>")
for i in list(per):
print (''.join(i))
# Driver program
if __name__ == "__main__":
str1 = input("Enter the string ::>")
allPermutations(str1)输出结果
Enter the string ::> abc Permutation Of this String ::> abc acb bac bca cab cba
热门推荐
10 八一幼儿祝福语大全简短
11 公司乔迁食堂祝福语简短
12 婚礼结束聚餐祝福语简短
13 儿媳买车妈妈祝福语简短
14 毕业送礼老师祝福语简短
15 同事辞职正常祝福语简短
16 恭贺新婚文案祝福语简短
17 金店立秋祝福语简短英文
18 婆婆高寿祝福语大全简短