python3.6 tag

18 questions


1 answers
116 views
0
Questions about Django mail

Hi, how are you?I am a developer who is learning Django hard It's nothing but I'm going to study Django mailHow should I implement what others send me??Even if I look up Google data, there are many th...

1 years ago

1 answers
101 views
0
TensorFlow "ImportError: DLL load failed: Specified module not found" error

To study tensorflow in Win10, you installed python3.6, cuDNN (v7.3.0), CUDA Toolkit (v10.0), and tensorflow-gpu as pip3. However, when I ran the example file, the following error occurred. I also sear...

1 years ago

1 answers
109 views
0
I want to enter a function through input in python.

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 ...

1 years ago

1 answers
107 views
0
Real-time exchange of gui, cmd information with Python

If you click a button in the gui, the cmd window appears, and in that cmd window,It is responsible for analyzing and printing data.I want to copy the strings that are output to qtextedit in gui and im...

1 years ago

1 answers
130 views
0
The actual return value of the Python input() function enters strangely.

txt=[Ghost vegetable\n, i\'m Groot\n]Suppose you enter line=input() #Ghost vegetables\n.if(line==txt[0]): print(This string is the same sentence.)I thought that if you type in input(), the görme\n, it...

1 years ago

2 answers
122 views
0
Python 3 Data Type Question

'import pandas as pddf = pd.read_excel('http://qrc.depaul.edu/Excel_Files/Presidents.xls')%matplotlib inlinedf['Political Party'].value_counts().plot(kind=pie)'If you look, the df part is blankHow is ...

1 years ago

1 answers
116 views
0
Get control + c input from Python and end the program

The program you are writing with Python contains a while statement I want to end the program when the user enters the control + c command when the program is running and when the while turns How do I ...

1 years ago

2 answers
102 views
0
Problems initializing variables defined by existing functions when module is being imported

NameError: name 'a' is not definedp1.py file and made for UI using tkinterp1.py has a file p2.py to run via command.The ultimate goal is to read the file path of a file from the p2.py file.First, in p...


1 answers
126 views
0
Python list element deletion question.

a = [Aa, Bb, Cc]b = [11, 22, 33]c = []a.extend(b)c.append(a)c.append(a)print(1, c)del a[3:]print(2, c)After using the del function in the above code, 11, 22, 33 of the list elements ['Aa', 'Bb', 'Cc',...

1 years ago

1 answers
103 views
0
I read a text file in Python, and I wonder how to read it from a specific line

For example, like thisReports Contents Number Name Gender 1 Hong Gil-dong Nam 2 Kim Chul-soo Nam 3 Lee Young-hee female When text is written like this, if you're trying to get only gender content, how...

1 years ago
- 1 - »

© 2024 OneMinuteCode. All rights reserved.