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


2 answers
50 views
0
Python Is there a way to get the order of maximum values in a particular dimension?

Noumpy or tf.Is there a way to get the order of maximum values in a particular dimension in the array?Simply put, we're going to take the position of the maximum value of a particular row in a place l...

2 years ago

3 answers
84 views
0
How to use sudo pip with ubuntu end user permissions???

I'm working on Python in ubuntu.On the online server, I installed Python 3.5 on ubuntu and installed necessary packages such as python pipes.However, during the installation process, I installed it as...


2 answers
81 views
0
Python case lettering and spacing questions.

I'm asking you a question because I thought of it while I was learning Python by myself.When you enter an English name without spacing as followsRyuHyunJin as follows[Ryu, Hyun, Jin] is about to be ou...

2 years ago

2 answers
61 views
0
Error when installing offline whl

I'm trying to install a package on a PC that doesn't have an Internet connection like the title.Of course, pip install xxx on PCs with Internet access.You can do it like this.Master, please make a mov...

2 years ago

2 answers
14 views
0
Putting List in Python List

student1=[80,80,90]student2=[70,40,50]...student30=[40,50,70]Classroom=[student1,student2,....,student30]When there are only n student lists,I want to put all of these elements in the Classroom list, ...

2 years ago

1 answers
14 views
0
I'm putting a new variable in the for statement, but it doesn't work

ICN_CEIL15 = soup.select_one('table:nth-child(2) > tbody > tr:nth-child(2) > td:nth-child(1) > table > tbody > tr:nth-child(4) > td').text + 'ICN_CEIL33 = soup.select_one('table:n...

2 years ago

2 answers
43 views
0
I put a variable in the list, but the values of the original variable and the variables in the list are not linked

a = Ayb = Rainc = Cd = Dabcd = [a, b, c, d]Even if the value of d is changed, the d value of the abcd variable is not changed. Why is that? I think the opposite is the sameI don't understand why d and...

2 years ago

1 answers
95 views
0
Django + Bootstrap error (django.template.exception.templateSyntaxError: Unknown argument for 'include' tag: 'width="100%")

In one of the bootstrap examples, we implemented the album example in django, and when you run the runserver command in managy.py, the message django.template.exception.TemplateError: Unknown argument...

2 years ago

1 answers
14 views
0
Please help me with the Python example question!

Create a function (make_car) in your dictionary that stores car information and save it to carfunc.py!This function must always receive the manufacturer name and model name. And you need to receive a ...

2 years ago

1 answers
96 views
0
Conditional statement for crawling with Python with different class names

I'm crawling with Selenium and Beautiful Soup with Python.wlist = list(range(10))driver = webdriver.Chrome('//chromedriver')driver.get('url')time.sleep(1)for i in wlist: thumb = driver.find_elements_b...

« - 381 - »

© 2024 OneMinuteCode. All rights reserved.