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
14 views
0
I have a question about compiling the Python web driver.

A program created by Python was compiled into an launcher file. It's a program using selenium, but the problem is that I compiled it with onefile with a web driver, but the chrome driver I'm using doe...

2 years ago

1 answers
14 views
0
I tried to compare the key and value values from the Python list, but the conditional statement doesn't work.

ho = {'aaaa':1111, 'bbbb':2222, 'cccc':3333}Please enter print('ID'.')a = input()if a in ho: print('Please enter your password.')else: print ('There is no such ID')Please enter the print('password'.')...

2 years ago

1 answers
75 views
0
About the Pandas DataFrame SQLite3 conversion

Hello. I'm trying to google several times, but this part is blocked, so I'm asking you a question. We created two lists as shown below, and created a DataFrame that identifies the quantity of values w...


1 answers
43 views
0
I don't know what algorithm to use for the number counter

You want to create a counter that increments the number. I want to create a counter similar to the current status of election counting. For example, we're going to count the number 15000. It's not tha...

2 years ago

1 answers
86 views
0
Inquire the webdriver.get function in Python Selenium (login to Naver and crawl)

It works normally from the code below to the login, but the last get function is not executed and ends.But that doesn't mean there's an error message.What's the reason?drv.get(https://nid.naver.com/ni...


1 answers
100 views
0
Question about Python list. Please help me

This is a question about the Python numeric value listWhether it's 1, 2, 3 or 1, 2, 3, 4, 5... Even if you put a few numbers in the list, Is there a way to write a Python expression like 1,2,3 = 61,2,...

2 years ago

2 answers
124 views
0
How to download a pdf file on a web server with python

The code I'm trying to make is to make a code by downloading the pdf files from Google Academic Information magazine through a download address on HTml. However, there were some problems during this d...

2 years ago

1 answers
128 views
0
Python pyplot - ValueError: Illegal argument(s) to plot: (2, 10)

Traceback (most recent call last): File C:/Users/yym30/PycharmProjects/tensorflow/mnist/networks/autoencoder2.py, line 62, in <module> fig, ax = plt.subplot(2, sample_size, figsize = (sample_siz...

2 years ago

2 answers
136 views
0
Python Input Value Integer Determination Function Basic Question

Hello, I'm a beginner who recently started learning Python.I want to create a function that returns True or False by writing def and then returns a different value according to the returned True/False...

2 years ago

1 answers
38 views
0
Python selenium element question

From find_element_by_partial_link_text What is the partial link text?I know xpath, selector, id, etc, but I'm curious about that.

2 years ago
« - 295 - »

© 2024 OneMinuteCode. All rights reserved.