error tag

111 questions


1 answers
62 views
0
Python def. I have a question

def z(a,b): return a+bDeclare a function in z.py.result = z(3,4)print(result)This code is x.I saved it as py and ran it NameError: name 'z' is not defined why?It's in one space, but I don't know why ...

2 years ago

1 answers
133 views
0
Hello. I have an inquiry about changing the value of Pandas. KeyError

csv = pd.read_csv(bmi.csv)csv.head()I made the data frame as below by making the code as above height weight label0 195 64 thin1 165 58 normal2 130 37 normal3 137 53 fat4 120 40 fatI wanted to ...

2 years ago

1 answers
64 views
0
SyntaxError: invalid syntax // basball game is being made, but I don't know if there is a problem with the main function.

def main(): print(Play Baseball)random_number = str(get_not_duplicated_three_digit_number())print(Random Number is : , random_number)user_input = '999'while(get_strikes_or_ball(user_input, random_numb...


1 answers
113 views
0
Python decoding question. UnicodeDecodeError 'utf-8' codec can't decode byte 0xb5 in position 3

I'm making a shell out of Python.import osfrom subprocess import check_outputprint(check_output(dir, shell=True).decode('utf-8'))It is a program that returns and prints the returned value when you ent...


1 answers
83 views
0
What should I do if 403 errors occur even if I add headers when using Python requests?

whoscored = 'https://www.whoscored.com'headers = { 'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36', 'referer' ...

2 years ago

1 answers
48 views
0
Python idle execution error

Python idle didn't work, so I ran idle.py in the idle folder and it came out like this If you reinstall Python, it will print out the same thing.Is there a solution?

2 years ago

1 answers
46 views
0
Python JSONDecodeError. I need your help ㅜㅜ

Hello, this is a code related to json parsing, but I don't know why the error is coming out. I ask for your help.import requests, jsonurl = http://placehold.it/350x150.pngdata = { image_url:http://pla...

2 years ago

1 answers
52 views
0
Raspberry Pi3 error 500 Internal Server Error

I just started raspberry pie. I'm building a web server while reading a book, but there's an error.Here's what the error says.Internal Server ErrorThe server encountered an internal error or misconfig...


1 answers
71 views
0
An error called UnicodeDecodeError occurred while coming to view the csv file in Pandas.

I'm sure I followed the example on the blog, but I don't know why there's an error with mine. I'm sure there's a 111.csv file, but I get this error. import pandas as pdasdf=c:\\Users\\KJY\\Desktop\\11...


1 answers
54 views
0
SyntaxError: expected expression, got '}'

I'm learning JavaScript with Judati.It's a question written in a while sentence.I need to print out the following, and the code I wrote is var num = 99;while (num>=1) { console.log(num + bottles of...

2 years ago
« - 6 - »

© 2024 OneMinuteCode. All rights reserved.