mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
14 lines
337 B
Python
14 lines
337 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
def readFile(name):
|
||
|
"""Leggi i contenuti di un file."""
|
||
|
file = open(name, 'r')
|
||
|
content = file.read()
|
||
|
file.close()
|
||
|
return content
|
||
|
|
||
|
def writeFile(name, content):
|
||
|
"""Scrivi qualcosa su un file, sovrascrivendo qualsiasi cosa ci sia al suo interno."""
|
||
|
file = open(name, 'w')
|
||
|
file.write(content)
|
||
|
file.close()
|