Computer Science, asked by manassbp9971, 8 months ago

Write a python program to create all possible unique strings by using 'a', 'e', 'i', 'o', 'u'. Use the characters exactly once.

Answers

Answered by priyanshu6969
0

Answer:

#Python

Explanation:

from itertools import permutations

result= print[".join(p) for p in permutations("aeiou")]

Similar questions