The python code that runs in Kawhi's robot brain when he shoots the rock:
import random
def shoot_basket():
# Simulate a basketball shot with 50% chance of success
return random.choice([True, False])
def kawhi_shoots():
for _ in range(10):
if shoot_basket():
print(“Wet ball”)
else:
print(“Missed shot”)
# Run the simulation
Kawhi_shoots()
Imagine Kawhi pulling up in your eyeballs and hitting you with the "wet ball" emote as he runs back to the other end of the court. Must be incredibly demoralizing.
-WhataMark