9 lines
209 B
Python
9 lines
209 B
Python
from pathlib import Path
|
|
|
|
|
|
contents = "I love programming.\n"
|
|
contents += "I love creating new games.\n"
|
|
contents += "I also love working with data.\n"
|
|
|
|
path = Path('programming.txt')
|
|
path.write_text(contents) |