python tag

Python is a high-level, interpreted, general-purpose programming language. Its design philosophy emphasizes code readability with the use of significant indentation.

Python is dynamically-typed and garbage-collected. It supports multiple programming paradigms, including structured (particularly procedural), object-oriented and functional programming. It is often described as a "batteries included" language due to its comprehensive standard library.

Guido van Rossum began working on Python in the late 1980s as a successor to the ABC programming language and first released it in 1991 as Python 0.9.0. Python 2.0 was released in 2000 and introduced new features such as list comprehensions, cycle-detecting garbage collection, reference counting, and Unicode support. Python 3.0, released in 2008, was a major revision that is not completely backward-compatible with earlier versions. Python 2 was discontinued with version 2.7.18 in 2020.

Python consistently ranks as one of the most popular programming languages. It is used by many organizations and companies. Pixar, Disney, Instagram and the developers of the Linux Kernel are among many of it's high-profile users, which includes many developers of Free and Open source software.

Reference: WIKIPEDIA

4650 questions


1 answers
41 views
0
I have a question for Python's regular show!

You want to print out the rest of the words except when the text is input and the extension is txt or hwp, as shown below.What should the regular expression be like? I'm asking this question after thi...

2 years ago

1 answers
103 views
0
I'd like to ask you more questions No module named 'matplotlib'

I think there might be a problem with the route, so I also checked the route where matplotlib was installed, and it seems to be the same. What's the problem, please help me.


1 answers
84 views
0
append error while using a custom function

def show_df (column, new_columns = ['distinguished'], dataframe = one): df = dataframe[column].value_counts().reset_index() new_names = new_colnames new_names.append('counts') df.columns = new_names d...


1 answers
33 views
0
Running Linux Commands Within Python

As the title suggests, I want to run Linux commands from Python to code, but I wonder if there is a way!More specifically, I'm currently working on Python on Linux, and I want to write SPICE commands ...

2 years ago

1 answers
18 views
0
How do I use different class values in both Python classes?

class a: def aa(self): self.aaa = 1class b: def bb(self): a.aa()bbb = b()bbb.bb()In the b class, self.I wonder how to use the aaa value.

2 years ago

1 answers
145 views
0
I want to list the values using append by rotating the function in Python, but I want to number the values in order, is there a way like that?

I want to list the values using append by rotating the function in Python, but I want to number the values in order, is there a way like that?Using the for superposition sentence, we set 20 n and 20 i...

2 years ago

1 answers
18 views
0
Extracting Excel Coordinates from Python

I extracted only the files I wanted using the if clause and put the data in the name-_list I did this again with the for syntax, but the price comes out weird.In this way, we aim to list the net incom...

2 years ago

1 answers
16 views
0
Find out if there is a string data type in the Python list

a=[1, 'this','a',' ']if str in a: print(a)I want to know if there's a string data type on the listDoesn't it come out if I do this?

2 years ago

1 answers
99 views
0
Anaconda 3 installation error. I'd like to ask for your help.

If there is a problem with the development environment, not the problem with the code, I will delete it. I'm sorry. Operating system: windows 10 pro 64bitAs shown in the picture, all the files of Anac...

2 years ago

1 answers
84 views
0
How can I output multiple lines of json in Python in the form of a data frame?

Types stored in json files # test.json{key_a1:value_a1, key_a2:value_a2, key_a2:value_a3}\n{key_a1:value_b1, key_a2:value_b2, key_a2:value_b3}\n{key_a1:value_c1, key_a2:value_c2, key_a2:value_c3}\n{ke...

« - 371 - »

© 2024 OneMinuteCode. All rights reserved.