Forezz

ДЗ 10 Н 1

Aug 1st, 2019
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.16 KB | None | 0 0
  1. # _*_ coding: utf-8 _*_
  2. import sys
  3. fout = open("a.txt", "w")
  4. s = ["123", "hello", "Вебинариум"]
  5. s = "\n".join(s)
  6. print (s, file = fout)
  7. fout.close
Advertisement
Add Comment
Please, Sign In to add comment