251 questions
stack = [3, 4, 5, 8, 0]print('stack : [')for x in stack: print(stack[x], end='') if x >= 4: print(']') break;As above, I tried to check if the value is output after declaring and assigning a list...
Add button on main screen (A) On the next screen (B) Enter Email (Edit Text)Enter name (edit text) Confirmation (Button) In this screen configuration, press the Email, Name, and OK button in the Edit ...
If you receive non-numeric characters to create the list, you will be prompted again, but the code will return to the beginning. How can I ask you to re-enter the part where the error occurred?while T...
I am using Python module csv to work on the csv fileAmong the values I loaded the csv file,For example, list = ['0', '0', '0'] There's a lot of data in the list.There's a value called ' in the third o...
This code changes the listWhy doesn't this code change the list? I don't know the difference between the two
myList = [4,7,2,342,9,3]when it comes tomyList.remove(3)Is there a remove function that can be used in this way?list.remove(3)After doing that, the 3rd value was erased at the end, not the 3rd index.
I think when we said we were going to make Hello-world,I think it's better to use it like Source Code 1Why can't source code 1 be executed and should I use source code 2 together?Is there a reason?my_...
I'm a beginner who's about to start an algorithm in Baekjun Online Jersey.While solving a simple I/O problem, I was looking at a short code that other people had unlockedI got to know that it's a map....
['1', '2', '3'] -> [1, 2, 3]How do I turn a number stored in text into a number?I think there is a way to do it without using the for statement, but I don't know what to do.
First of all, assuming that it's a structure, it' name, its age, The name of the structure is st. ArrayList [] list= new ArrayList[5];st s = new st(); s.Name (name);s.Age (11);list[0] = new ArrayList(...
« | - 15 - | » |
© 2024 OneMinuteCode. All rights reserved.