Skip to content

Instantly share code, notes, and snippets.

@AnupJoseph
Last active February 24, 2021 12:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AnupJoseph/6d0f8929da70d38c174c854017fa340d to your computer and use it in GitHub Desktop.
Save AnupJoseph/6d0f8929da70d38c174c854017fa340d to your computer and use it in GitHub Desktop.
def build_yaxis(snow_max):
y_axis = []
for i, value in enumerate(snow_max):
y_axis+=[value,value]
return y_axis
y_axis = build_yaxis(snow_max)
y_axis
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment