Which of the following represents the appropriate use of a pass statement as a placeholder for code.
a) if rolledValue == 7:
pass
else:
print("player won")
b) if rolledValue == 7:
print("player won")
pass
c) pass
if rolledValue == 7:
print("player won")
d) if rolledValue == 7:
pass
else:
print("player won")



Answer :

Other Questions