111 questions
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 ...
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 ...
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...
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...
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' ...
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?
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...
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...
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...
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...
« | - 6 - | » |
© 2024 OneMinuteCode. All rights reserved.