Advertisement
RyoMaeda

Lab 9

Jan 23rd, 2020
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.17 KB | None | 0 0
  1. word = input("Please enter the first word:")
  2. word2 = input("Please enter the second word:")
  3. for xx in word:
  4.    for x in word2:
  5.       print(xx ,end=" ")
  6.    print()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement