All Questions

19771 questions


2 answers
468 views
0
How do I change the dtype from object to int64?

import numpy as npimport pandas aspddf_maize=pd.read_csv(PSD online data maize.csv)print(df_maize[Name])print(df_maize[Production])print(df_maize[Exports])# If you look at the printed results, the dat...

1 years ago

1 answers
245 views
0
How can I create web documentation pages like Visual Studio Code and MSDN?

We would like to create web-viewable documents such as Visual Studio Code and MSDN.I looked it up on the Internet and found out that there are Sphinx, Github Pages, etc. using Python. What are the oth...

1 years ago

1 answers
385 views
0
Print Python beautiful soap text only

import requestsfrom bs4 import BeautifulSoupurl = https://toss.im/res = requests.get(url)res.raise_for_statussoup = BeautifulSoup(res.text, lxml)toss = soup.find(li, attrs={class:p-navbar__item})print...

1 years ago

1 answers
312 views
0
dayArray [dayOfWeek-1] How do I interpret this?

package sec02.verify.exam02;import java.util.Calendar;public class DatePrintExample2 { public static void main(String[] args) { Calendar now = Calendar.getInstance(); int year = now.get(Calendar.YEA...

1 years ago

1 answers
469 views
0
Please tell me what object is used to redefine equals in HashMap.

javapackage sec01.verify.exam03;public class Student {private String studentNum;public Student(String studentNum) { this.studentNum = studentNum;}public String getStudentNum() { return studentNum;}@O...

1 years ago

1 answers
240 views
0
Questions about creating Python class objects

acc_cus = []dif = 0while 1: num = int(input( ++++++++++++++++++++++++++++++Enter the number of the item you want.1. Create an account2. Deposit3. Withdrawal4. Check account information5. Shutdown++++...

1 years ago

1 answers
258 views
0
How to get commit list of files in repository using githubapi

I would like to use the GitHub API to get commit information for files in the repository.If you specify the following, you will get commit information for the entire repository.requests.get(fhttps://a...

1 years ago

1 answers
355 views
0
I would like to check the behavior of VirtualBox "Discarding the Save State" on the official website.Where is it written?

VirtualBox 7.0.6When writing the following article, I would like to understand the exact behavior of discarding the state of preservation.https://qiita.com/yuji38kwmt/items/9465a8c7098838990898Discard...

1 years ago

1 answers
334 views
0
$ About rpm-Va--nofiles--nodigest

What does the following command mean?$rpm-Va --nofiles --nodigestI typed it first, but it didn't show anything, so I searched it. --nodigest, do not inspect package headers or digest values--nofiles, ...

1 years ago

1 answers
478 views
0
Understanding PHP function names.Can I also use "asterisk*" or "escape\"?

Can I also use asterisk* or escape\ for PHP function names?For example, is a function name like fetch_*_id OK?The function name follows the same rules as the other labels in PHP.Valid forms of functio...

php
1 years ago
« - 18 - »

© 2024 OneMinuteCode. All rights reserved.