mirror of
				https://github.com/NohamR/Stage-2023.git
				synced 2025-10-31 15:29:30 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			175 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			175 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| f = open("track/points.txt")
 | |
| l = f.readlines().replace('\n', '')
 | |
| a = []
 | |
| b = []
 | |
| for i in (0, len(l)-1):
 | |
|     if i/2 == 0:
 | |
|         b+=[l[i]]
 | |
|     else:
 | |
|         a+=[l[i]]
 | |
| 
 | |
| print(l) | 
