Quote
# How many clubs does a "natural" 2+ card 1 club opening have ?
#
produce 100000
SC1219 = hcp(south)>=12 and hcp(south)<=19
SC2 = shape(south, 4432)
SC3 = shape(south, 4333) or shape(south, 3433) or shape(south, 4423)
SC4 = (shape(south, 3334) or shape(south, 4414))
SC5plus = clubs(south)>=5 and clubs(south)>diamonds(south) and clubs(south)>hearts(south) and clubs(south)>spades(south)
S1NT = hcp(south)>=15 and hcp(south)<=17 and shape(south, any 4432 + any 4333 + any 5332)
action frequency "of number of clubs" (clubs(south),0,10)
condition SC1219 and (SC2 or SC3 or SC4 or SC5plus) and (not S1NT)
I hacked this script to demonstrate to a partner why it is a mistake to assume that a "natural" 2+ card 1♣ opening will likely be short.
It assumes strong NT, that 1♣ promises 2+ cards (as we will open 1♣ with exactly 4=4=3=2) and that 1♦ promises 4+ cards (and does not deny 4 card clubs), which is the dominant style around here.
If anyone can spot a bug I will be grateful.