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
19 views
0
Python String Function Question..

If you run 'fdsf-fg'.rstrip('-fg') and 'fdsg-fg'.rstrip('-fg')All results are 'fds'.It's normal when fdsf and fdsg come out, respectively. Why does it come out as fds?In fdsf-fg, instead of f in index...

2 years ago

1 answers
17 views
0
Is there a way to list the numbers in the Python list by size?

Is there a way to literally list the numbers in Python by size?For example, s=[2,1,4,3]When s=[1,2,3,4]How to list it as.It's a list that only contains integers.

2 years ago

1 answers
82 views
0
I'm curious about Python Virtualenv.

Hello. As I searched for it, in the Jango Girls tutorial He started the project by creating Python Virtualenv. I think it's really good to create an independent development environment. I wonder if th...

2 years ago

1 answers
106 views
0
Python Django Pagination error

I reported the sample code on the Internet to page on DjangoThe contents of the first page come out well, but if you press Next, nothing comes out.In url?I think it's getting weird with page=2, but I ...

2 years ago

1 answers
75 views
0
Can I create a chrome extension using Python?

Can i make chrome extension using python?I know that Google Chrome's extension program is made of json, html, css, js, etc., but is there a way to make it python?Or use a sauce made of python... I thi...

2 years ago

2 answers
123 views
0
When calling Python, don't let the console window open

I have to paste the Python script (.py file) somewhere else and use it. I made them call Python scripts periodically in other programs.The console window (terminal) keeps popping up every time I call,...


1 answers
75 views
0
Python web crawling question.

Hello, I found a bug while making and testing the program.My program includes the ability to tell you the frequency of words and the ability to count the number of years and the number of years that a...

2 years ago

1 answers
44 views
0
I have a question about Python pivot_table

After reading Excel data for Dep, Name, Sales, and X Sales values as shown below,Add the ratio of X Sales by Sales (X Sales/Sales*100) as 'rate' coulmn, When pivot_table was applied based on Dep in th...

2 years ago

1 answers
94 views
0
Python web-crawling, please.

I want to save bitcoin price information through web crawling. <What do you want to know><script>vardata= [{Volume:1.0000000002,.......}] This part of the data is I'd like to know the cod...

2 years ago

2 answers
85 views
0
How do I resolve the Lambdify name error in Sympy?

If you receive an object that you spun Fourier_transform with Sympy as lambdify, a name error appears that FourierTransform is not defined even though numpy and sympy are applied to the module. import...

« - 213 - »

© 2024 OneMinuteCode. All rights reserved.