78 questions
1) When using a two-dimensional array as a parameter for a function, why is it that the horizontal size should be specified...?2) Usually, we receive separate values of col and row that tell us the si...
Please tell me how to call function1 of file2 from file1.I wish I could only recall that function.
I would like to create a program that calculates the values of A, B, C, and D by receiving the values of A, B, C, and D as inputs and then entering a simple four-factor operation using A, B, C, and D ...
import sysimport osdef get_fruit_list(fruit_list): fruit_path = os.getcwd() + '\\fruit_list.txt' try: fruits = open(fruit_path, 'r') fruit_love = fruits.readlines() for fi in fruit_love: fruit_li...
There are so many functions created while programming with Python that it becomes difficult to manageIn general Python programming, each function (or function that performs similar actions) is used Do...
Below is a baseball game that I have madeimport random answer = random.sample(range(1,10),3) tr_num = 0 # Variable indicating how many attempts have been madevariable representing the number of st...
Hi, everyone.In the process of studying double reflexes,I'm asking because I don't understand the following function.I don't quite understand how the function to get the maximum value works, as follow...
class A: def aaa(self): return Nonedef aa(): a.aaa()a = A()print(aa())a = A()class A: def aaa(self): return Nonedef aa(): a.aaa()print(aa())When I use a function or class in Python, can I create a f...
How do you make this into Python chords? I squeezed it like this, but exit keeps getting errors. Help me
« | - 2 - | » |
618 Uncaught (inpromise) Error on Electron: An object could not be cloned
574 Who developed the "avformat-59.dll" that comes with FFmpeg?
613 GDB gets version error when attempting to debug with the Presense SDK (IDE)
916 When building Fast API+Uvicorn environment with PyInstaller, console=False results in an error
© 2024 OneMinuteCode. All rights reserved.