Toggle navigation
Toggle navigation
This project
Loading...
Sign in
최재웅
/
menu_recommand_webpage
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
taegwon
2022-06-08 09:37:35 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
40d85b7ce47a93a46973391cccec222c6fa1b6a3
40d85b7c
1 parent
fe5ac86c
fix fileread.py to take other variables
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
CHATBOT/fileread_practice.py
CHATBOT/fileread_practice.py
View file @
40d85b7
...
...
@@ -20,7 +20,7 @@ def print_menu():
list_compare_fixed
=
[
item
.
strip
()
for
item
in
list_compare
]
fl
=
open
(
"/home/ec2-user/menu_recommand_webpage-1/CHATBOT/final.txt"
,
'w'
)
fl
=
open
(
sys
.
argv
[
3
]
,
'w'
)
for
i
in
list_compare_fixed
:
I
=
i
.
encode
(
'utf8'
)
fl
.
write
(
I
)
...
...
Please
register
or
login
to post a comment