All Questions

19771 questions


1 answers
218 views
0
I have a question for basic Python!

I'm asking you this question because I don't know even if I try to search this and that for more than an hourI'm explaining it in words because the image is not attached.You have to give a list statem...

1 years ago

1 answers
288 views
0
I have a question about the Java class. Please tell me how to write the following.

Use the Calendar class to get your birthday in the yyyy/MM/dd format under the following conditions:SimpleDateFormat sdf = new SimpleDateFormat(Describe the date format here;System.out.println(sdf.for...

1 years ago

1 answers
431 views
0
Unable to register 7zip in shell context menu

It was installed via Scoop.It's easier to make it with the right click menu, so I'd like to serve it, but I can't do it for some reason.I would like to solve this problem because it is easy to manage ...

1 years ago

1 answers
426 views
0
For, while

For statement hap=0for n in range(1234,4568): if n%444 ==0: hap += nprint(hap)How do I change this to a while statement

1 years ago

1 answers
433 views
0
It's a question of the quantity of the shopping cart.

I'm working on the quantity of the shopping cart. At first, I thought I could just change the quantity to JavaScript and pass the price to the order, but when I think about it, even if I log out and l...

1 years ago

1 answers
248 views
0
This is the class base question.

class calculator{ private: int nsum; int nmin; int nmul; int ndiv; public: void init(void); void show(void);};void calculator::init(void) { int nsum = 0; int nmin = 0; int nmul = 0; int nd...

1 years ago

1 answers
353 views
0
Question about __init__ method

#1 First Methodclass Triangle(object): def area(self, b, h): self.b = b self.h = h return b*h/2a = Triangle()a.area(4,8)I tried to write down the code above using the init method.#2 Try the second ...

1 years ago

1 answers
401 views
0
byte size and look, read method

I am currently learning about bytes and file processing.#Hangul is 2 bytes per character (other is 1 byte) If it is 5 letters, it is 10 bytes, and 'Studying Python Language' is 10 letters (including s...

1 years ago

1 answers
356 views
0
Python Cote Question

def solution(n): answer = [] # First, pull out all the mineral water, and then leave only the few of the mineral water. for i in range(2,n+1): if n%i == 0: answer.append(i) for i in answer: cnt = 0...

1 years ago

1 answers
296 views
0
Create the desired output with format

name = 'Anyone'snum = '22808080'addr = 'Nam-gu, Ulsan Metropolitan City'mp = '0101234567'Let's make a format statement so that it can be output as follows. 1. Name: anyone 2. Academic number: 22808080...

1 years ago
« - 93 - »

© 2024 OneMinuteCode. All rights reserved.