Computer Science, asked by noushadkanattuserry, 19 days ago

how to download image using python​

Attachments:

Answers

Answered by sushree2033
0

Answer:

how to download image using python​

  • response = requests. get("https://i.imgur.com/ExdKOOz.png")
  • file = open("sample_image.png", "wb")
  • file. write(response. content)
  • file.

Explanation:

Similar questions