We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81290cb commit ce33513Copy full SHA for ce33513
sentence_permutations.py
@@ -0,0 +1,7 @@
1
+from itertools import permutations
2
+
3
+my_list = ["Roses ", "Are ", "Red "]
4
+perms = [''.join(p) for p in permutations(my_list)]
5
+for p in perms:
6
+ print(p)
7
+print("Total Possible Sentences: " + str(len(perms)))
0 commit comments