or tag

453 questions


1 answers
57 views
0
Question for statement in the Pandas dataframe.

Hello, everyone It's been a while since I asked you a question.In the next picture, the expression in the for statement Can we turn it back to the For Moon one more time instead of like that? What can...

2 years ago

1 answers
45 views
0
Python open source error question

import requests,sys,time,os, argparsedef main(): os.system(clear)parser = argparse.ArgumentParser()parser.add_argument('-d', help='path to file of domain list', nargs=1, dest='domain', required=True)p...

2 years ago

1 answers
118 views
0
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xc1 in position 0: invalid start byte.

Hello, I'm a high school student who is running the code due to school assignments. https://github.com/Bengemon825/TF_Object_Detection2020 I received an example from the link above and changed the dat...


1 answers
66 views
0
Enter numeric data using a for statement in the C language string

I'm a beginner in C language.You want to store data in each string from a string through an array and output it.You want to enter each branch's revenue into an array and calculate the total and averag...

2 years ago

1 answers
95 views
0
It's a Python question.

from tkinter import *import matplotlib.pyplot as pltwin = Tk()win.geometry(1024x576)win.title(Minecraft bukkit)win.option_add(*Font, NotoSansKR-Medium 20)ent = Entry(win)ent.insert (0Enter server to f...

2 years ago

1 answers
60 views
0
Error implementing mnist neural network..

I don't know why there's an error ㅠ

2 years ago

1 answers
56 views
0
JSONDecodeError: Expecting value: line 1 column 1 (char 0) is a question

import requestsimport reimport jsonreq = requests.get(page_urls[0]).json()html = req.contentsoup = BeautifulSoup(html, lxml)contents_table = soup.find(name=article)title = contents_table.find_all(h3 &...

2 years ago

1 answers
108 views
0
c++ Find the smallest number

int i, min = 0; for (i = 0; i < 10; i++) { cin >> number; if (i == 0) // Condition A min = number; else if (min > number) // Condition B min = number; } cout << min;Hello, the...

2 years ago

1 answers
116 views
0
c++ Repeating Statement

#include <iostream>using namespace std;int main(){ const int N=3; int i,j; for(i=0; i < N; i++){ for(j=i; j < N; j++){ cout << i << << j << endl; } }}When you go ...

2 years ago

2 answers
77 views
0
How to get C/C++ numbers and get the sum excluding the smallest and largest numbers.

#include <iostream>using namespace std;int minmax(int num) { int value, sum; int min, max; min = 9999; max = 0; for (int i = 0; i < num; i++) { cout << Enter your values please <&l...

2 years ago
« - 37 - »

© 2024 OneMinuteCode. All rights reserved.