Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Чтение файла
- with open('vk_ids.txt') as file_object:
- contents = file_object.read()
- print(contents)
- # Построчное чтение файла
- with open('vk_ids.txt') as file_object:
- for line in file_object:
- print(line)
- # Запись в файл
- filename = 'test.txt'
- with open(filename, 'w') as file_object:
- for item in range(30,41):
- file_object.write(str(item)+ "\n")
RAW Paste Data