You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
print(pos_list)
if len([i for i in pos_list if i < 0]) > 0:
del pos_list[len([i for i in pos_list if i < 0]):]
pos_list.insert(0, i for i in pos_list if i < 0)
elif len([i for i in pos_list if i > 11]) > 0:
del pos_list[-len([i for i in pos_list if i < 0]):]
pos_list.append(i for i in pos_list if i < 0)
The text was updated successfully, but these errors were encountered:
의도대로 작동하지 않고 오류가 남
The text was updated successfully, but these errors were encountered: