All Questions

19771 questions


1 answers
343 views
0
Why do you need to put decimal point in the c language to get the result?

Hello. I have a question about c language coding.#include <stdio.h>int main(void){ double c, f; printf(Enter a Fahrenheit value: ); scanf_s(%lf, &f); c = 5.0 / 9.0 * (f - 32.0); // <<...

c
1 years ago

1 answers
304 views
0
I have a question about c language coding.

Hello. I have a question about c language coding.```#include int main(void){ double c, f;printf(Enter a Fahrenheit value: );scanf_s(%lf, &f);*c = 5.0 / 9.0 * (f - 32.0);*printf(C value is %lf degr...

1 years ago

1 answers
359 views
0
How to Run Terraform from a Location Other Than the Current Directory

Typically, Terraform executes the following command with the location of the *.tf(main.tf) file as the current directory:terraform apply --auto-approveIs it possible to use Terraform from a location o...

1 years ago

1 answers
309 views
0
I want to write an import statement in one line.

to distinguish Python's Pillow packages from other packages, as follows:I'd like to use it with the prefix pil, but after trying various things, I couldn't achieve it without two lines of import state...

1 years ago

1 answers
444 views
0
Cannot flash db migrate

When I run the flash db migrate, the Foreignkey has failed as follows:I can't find out what's different about the code.Please let me know and give me some advice.DB uses sqlite3.#Error Contents File C...

1 years ago

1 answers
494 views
0
How to eliminate and treat data that does not meet the requirements in Excel data

I'd like to read the specific sheet of Excel file (the name of the sheet has been decided) and determine whether the data should be imported.Exclusion of nonconforming data (extracting suitable data) ...

1 years ago

1 answers
274 views
0
Determine if the values in each column are included in the text

How do I determine if the values in each column are included in the text?import pandas as pddf = pd.DataFrame( data = { 'Context': ['Clear in Tokyo', 'Cloudy Kanagawa', 'Hot Okinawa Climate', Keywor...

1 years ago

1 answers
361 views
0
(Beginner) Python *Number of parameters

/Users/shardone/Desktop/Screen Shot 2023-02-15 PM 5.37.00.pngThe top is the guide.I coded the bottom.*How do I count the number of parameters?Error starting from the 16th.

1 years ago

1 answers
339 views
0
Logistic regression

The logistic regression definition is The name is regression, but it's actually a classification model, and I've created an example in a situation where predicting a classification is understood.Becau...


2 answers
392 views
0
When a variable declaration is made, a numerical value is substituted from the beginning.

I'm a beginner in programming.First, we set up a program in c language that outputs the maximum, minimum, average, most frequent, and total values by entering the number of elements one by one, but af...

c
1 years ago
« - 14 - »

© 2024 OneMinuteCode. All rights reserved.