I need to insert values of type SET and uuid into my C* table. I'm using python in this case with driver installed. (I prefer getting input from users)
userid = uuid.uuid1() //primary key value
tag= set()
tag.add(input(' ')) //two values are added
tag.add(input(''))
Let me know how to insert :)