Write a python program to display letter of words in pattern
print(“Displaying letters of the word in Pattern format using Python:”) word_pattern = “PythonisCool!” s = “” for t in word_pattern: s = s + t… Read More »Write a python program to display letter of words in pattern