python functios code example
Example 1: python functions
def a_function():
print("Hello World!")
return 0
def answerValid(prompt, correct_answers, invalid):
while True:
user = input(prompt)
if user in correct_answers:
break
return user
else:
print(invalid)
a_function()
function_called = a_function()
answer = answerValid("What is 8 * 8?", [64], "Invalid Option")
print(answer)
Example 2: what does * mean in python in functions
>>> numbers = [2, 1, 3, 4, 7]
>>> more_numbers = [*numbers, 11, 18]
>>> print(*more_numbers, sep=', ')
2, 1, 3, 4, 7, 11, 18