Advertisement
Guest User

Untitled

a guest
Sep 18th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. def join_col_list(col_list):
  2. '''Takes in column list and joins with commas to form sql statement'''
  3. query = ',\n'.join(col_list)
  4.  
  5. return query
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement