Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
91 views
in Technique[技术] by (71.8m points)

python - how to use while loop to print 'not allowed' message when there is space between characters

i wanted while loop to work when there is spaces between character but it didn't.

a= input("...")
x = [" "]

while a in :
  print("not allowed")
question from:https://stackoverflow.com/questions/66057261/how-to-use-while-loop-to-print-not-allowed-message-when-there-is-space-between

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
a= input("...")
x = [" "]

while " " in a:
  print("not allowed")

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...