All Questions

19771 questions


1 answers
389 views
0
(python) Abs function re-create question

I'm studying how to make a Python function algorithm again. It's really not easy.Below is the coding that I redefined the ABS function.def my_abs(number): if number < 0: number * -1 elif number &g...

1 years ago

1 answers
273 views
0
(python)abs Function Recreate Question

I'm studying how to rebuild the Python function algorithm.It's really not easy.Below is the coding that I redefined the ABS function.def my_abs(number): if number < 0: number * -1 elif number >...

1 years ago

1 answers
361 views
0
How to Pass Ubuntu PATH

I installed python 3 series on Ubuntu, but I just don't know how to use PATH.https://qiita.com/takanemu/items/6027291be8a2a6af9adc or https://www.motokis-brain.com/article/122I am also looking at the ...

1 years ago

1 answers
299 views
0
Python Class Method Questions

class JPP: def __init__(self): # Create headless Chrome and specify download folder code self.driver = webdriver.Chrome() # options=self.options # Below is the current time-based -12 hours + 24 hou...

1 years ago

1 answers
307 views
0
How to Specify the Number of Decimal Digits When Drawing DataFrame in matplotlib

I have saved the Pandas DataFrame in the image in matplotlib by referring to the site below. I am having trouble formatting the number of decimal places.Could you tell me how to display it in two deci...

1 years ago

1 answers
258 views
0
I want to read the contents of the file and use node-gzip.

I am thinking of compressing the file with JavaScript and transferring it to the server in node-gzip.On this page, as shown below (see ), there is a description of the text as input.(Here's 'Hello Wor...

1 years ago

1 answers
403 views
0
I want to implement HLS playback using rails, react-player and hls.js.

With rails at the back end and react/typescript at the front, we would like to implement the streaming playback feature using react-player and hls.js.Currently, I use a video tag to retrieve mp4 from ...


1 answers
292 views
0
Get maximum value in the list Coding does not work as expected

def maxFunc(t): max = 0 for i in range(10): if t >= max: max = t return maxA = [1, 2, 3, 4, 5, 6, 73, 8, 10, 54] maxNum = list(map(maxFunc, A))print(maxNum)It's a code that prints the largest v...

1 years ago

1 answers
215 views
0
About sorting C language strings

Regarding the problem below, I was able to print the file, but I didn't know how to sort it out, so I got stuck.Could someone please tell me?#include<stdio.h>void main(){ inti,n; intsin[9][6]; F...

c
1 years ago

1 answers
305 views
0
How to authenticate a desktop application with a browser

What kind of technology does a rack desktop application or an application like VisualStudio or Office that seems to authenticate users with a browser (or WebView) and link authentication results to a ...

« - 74 - »

© 2024 OneMinuteCode. All rights reserved.