Python script

Christian Gollwitzer auriocus at gmx.de
Thu Dec 7 09:10:29 EST 2017


Am 07.12.17 um 15:06 schrieb prvn.mora at gmail.com:
> Hi All,
> I am new to python need help to write a script in python
> my requirement is :-
> write a python script to print sentence from a txt file to another txt file

txt = open("another.txt", "w")
print("sentence from txt file", file = txt)


	Christian



More information about the Python-list mailing list