We have two inputs. Write a program that will not allow you to fill in the second input until something is written in the first input. code example
Example: the user to enter their name and display each letter in their name on a separate line python
wq=input("enter your name: ")
word= wq
for index,letter in enumerate(word,1):
print(index,":",letter)