16 questions
import osimport sysimport urllib.requesttext = text sample.encQuery = urllib.parse.quote(text)data = query= + encQueryurl = https://openapi.naver.com/v1/papago/detectLangsrequest = urllib.request.Requ...
I'm practicing Python crawl.Originally, when you get the uploaded image address on the site, the Internet Explorer opens and the image opensUsing this, I changed the urllib.request image URL to the de...
Hello, I'm a beginner at Python. We are working on a program that uses Python to import Korean files connected to FTP.An error occurred when we performed it by squeezing it like below.import ftplibimp...
In Python, we made a calculation using exec and eval in the for statementlists = [a=1, b=2, c=a+b]returned_list = []for x in lists: exec(x) returned_list.append(eval(x))print(returned_list)If I write ...
I'm getting an error on my desktop. If you know the reason, please explain.I'm only looking for this for two days, but I'm asking you a question because my learning progress is not progressing.from em...
class PayGildong: def __init__(self): self.day = 25 self.__pay = 1000000 def setPay(self, pay): self.__pay = pay def getPay(self): return self.__paygd = PayGildong()gd.day = 14gd.__pay = 800000pri...
« | - 2 - |
© 2024 OneMinuteCode. All rights reserved.