ehoho

attachment_1_elbow_pipe_longest_way_branch

Jul 25th, 2017
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.43 KB | None | 0 0
  1. #________________________________________________________________________
  2. #Исключаем трубы-враги из отводов:
  3.  
  4. comands_list=list_elbow
  5. clear_list = list_elbow[:]
  6.  
  7. for enemy in enemy_list:
  8.     for comands in comands_list:
  9.         if enemy in comands:
  10.             enemy_list.extend(x for x in comands if x not in enemy_list)
  11.             if comands in clear_list:
  12.                 clear_list.remove(comands)
Advertisement
Add Comment
Please, Sign In to add comment