Skip to content

Instantly share code, notes, and snippets.

View malep2007's full-sized avatar
💭
Available

Ephraim Malinga malep2007

💭
Available
  • iLabs@MAK Project
View GitHub Profile
.container {
display: grid;
grid-template-columns: (12, 1fr);
grid-auto-rows: 50px;
}
.cell {
border: 1px solid black;
}
def validate(hand):
if hand < 0 or hand > 2:
return False
return True
def print_hand(hand, name='Guest'):
hands = ['Rock', 'Paper', 'Scissors']
print(name + ' picked: ' + hands[hand])