9 lines
No EOL
208 B
Python
9 lines
No EOL
208 B
Python
name = input('Enter name of Student: ')
|
|
|
|
while not valid:
|
|
cnic = input('Enter ID of Student: ')
|
|
if len(cnic) == 13:
|
|
valid = True
|
|
else:
|
|
valid = False
|
|
print('invalid CNIC\n') |