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
312 views
in Technique[技术] by (71.8m points)

validation - Python: Input validate with string length

Ok so i need to ensure that a phone number length is correct. I came up with this but get a syntax error.

phone = int(input("Please enter the customer's Phone Number."))
if len(str(phone)) == 11:
    else: phone = int(input("Please enter the customer's Phone Number."))
phonumber.append(phone)
See Question&Answers more detail:os

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

1 Answer

0 votes
by (71.8m points)

You can't have

if:
    else:

Because the else, being inside the first if block, doesn't have a corresponding if.

It should be:

if:
    this
else:
    that 

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

...