Skip to content

Commit ce33513

Browse files
authoredMar 14, 2021
sentence permutations script
1 parent 81290cb commit ce33513

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed
 

‎sentence_permutations.py

+7
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)
Please sign in to comment.