Posts by shermila • 23 points
1 post
-
2
votes1
answer54
viewsQ: Receive 12 elements and separate them into 3 lists
I need to receive three lists generated in the shell to process in Python: l1=4 3 2 1 l2=2 1 3 4 l3=1 2 3 4 In the shell script step this way: python3 orth_median.py ${o_l1[*]} ${o_l2[*]} ${o_l3[*]}…