Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Felixgithub2017/MMCU
/ writelines_to_file
Function
writelines_to_file
TestChatGPT.py:75–77 ·
view source on GitHub ↗
(file, lines)
Source
from the content-addressed store, hash-verified
73
return
lines
74
75
def
writelines_to_file(file, lines):
76
with
open(file,
'w'
, encoding=
'utf8'
)
as
f:
77
f.writelines(lines)
78
79
def
writetext_to_file(file, contents):
80
with
open(file,
'w'
, encoding=
'utf8'
)
as
f:
Callers
1
main
Function · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected