Consider the following Python code snippet:
def verify_score(score):
passing_score = 50
if score >= passing_score:
print("Pass")
else:
print("Fail")
Give the complete line of code from this snippet that creates and initialises a variable.