Article Outline
Python example 'python-example-97'
python-example-97
Python example: python-example-97
#!/usr/bin/python
# -*- coding: UTF-8 -*-
if __name__ == '__main__':
from sys import stdout
filename = raw_input('input a file name:\n')
fp = open(filename,"w")
ch = raw_input('input string:\n')
while ch != '#':
fp.write(ch)
stdout.write(ch)
ch = raw_input('')
fp.close()
Useful links
- Learn Python: https://pythonbasics.org/
- More Python: https://pythonprogramminglanguage.com