用于在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 同学道别祝福语简短