Skip to content

Commit 25d4c82

Browse files
committed
done
1 parent 8f26b7d commit 25d4c82

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

code/Andy/python/andy_mini_capstone.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,10 @@ def get_response():
2323

2424
email_msg = []
2525
for i in range(len(url)):
26-
email_msg.append(f"{title_list[i]}\n{url[i]}\n")# combining both list
26+
email_msg.append(f"{title_list[i]}\n{url[i]}\n") # combining both list
2727

28-
url = '\n'.join(email_msg)# entire list and joining them in new lines in one string
28+
url = '\n'.join(email_msg) # entire list and joining them in new lines in one string
2929

30-
# message =
31-
# for i in range(len(title_list)):
32-
# print(url)
3330

3431

3532
send_mail(
@@ -84,4 +81,7 @@ def get_response():
8481
# json_response_dict = json_response[0]
8582
# print('first response : ', json_response_dict)
8683
# title = json_response_dict['title']
84+
# message =
85+
# for i in range(len(title_list)):
86+
# print(url)
8787
# print('title: ', title)

0 commit comments

Comments
 (0)