Not completed yet. Only reads of file and prints the needed values per line.

This commit is contained in:
2017-12-16 09:45:51 +01:00
parent 88afc207f0
commit fa6e69e5d5
2 changed files with 16393 additions and 0 deletions

22
luke_6/lightning_mc_queen.py Executable file
View File

@@ -0,0 +1,22 @@
#!/usr/bin/env python3.6
from pprint import pprint
def readFile():
with open('./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()

16371
luke_6/verda.txt Normal file

File diff suppressed because it is too large Load Diff