10 lines
133 B
Python
10 lines
133 B
Python
|
has_learned_python = True
|
||
|
has_degree = True
|
||
|
|
||
|
if has_learned_python or has_degree:
|
||
|
print("Shortlist Candidate for interview")
|
||
|
|
||
|
|
||
|
|
||
|
|