mirror of
				https://github.com/KevinMidboe/knowit_julekalender-2017.git
				synced 2025-10-29 17:50:18 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			540 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			540 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env python3.6
 | |
| 
 | |
| import os
 | |
| from pprint import pprint
 | |
| 
 | |
| def readFile():
 | |
|     with open(os.path.dirname(__file__) + '/verda.txt', 'r') as f:
 | |
|         read_data = f.read().splitlines()
 | |
|     f.close()
 | |
|     return read_data
 | |
| 
 | |
| def main():
 | |
|     data = readFile()
 | |
|     for line in data[1:]:
 | |
|         listview = line.split('\t')
 | |
|         city = listview[3]
 | |
|         country = listview[10]
 | |
|         cord = [listview[12], listview[13]]
 | |
|         # print('place: {}', city, 'in', country)
 | |
|         # print('cord:', cord)
 | |
| 
 | |
| if __name__=='__main__':
 | |
|     main()
 |