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
[Python] Import multiple data frames into repeat statements

word_freqs = []word_freqs.append(word_freqs_0)word_freqs.append(word_freqs_1)word_freqs.append(word_freqs_2)word_freqs.append(word_freqs_3)word_freqs.append(word_freqs_4)word_freqs.append(word_freqs_5...

2 years ago

1 answers
46 views
0
Questions about Python JSON

[{'_id': ObjectId('61e199a5ce52e0f0d6abbd13'), 'licanse': '93ba9b48-8c1c-4d04-98cf-8ef9777e60db', 'guildid': '924636653753073694'}]In , I want to make the value licanse and the value guild into a vari...

2 years ago

1 answers
21 views
0
I can't convert the date...

The date I got from crawling is 22.01.16. If it comes out in this form and changes to date time, there is a bug that changes to an unexistent time. In this situation, how do I change the date to conve...

2 years ago

1 answers
91 views
0
[Python] With a repeat statement, defaultdict append

dfs[0], dfs[1] to dfs[8] data.from transformers import AutoTokenizerfrom collections import defaultdicttokenizer = AutoTokenizer.from_pretrained(bert-base-cased, do_lower_case = True)# Number zeroword...


1 answers
104 views
0
It's a Python question! AttributeError: 'str' object has no attribute 'text'

Hi, everyone.An error appears when trying to turn as shown below.Is it not possible to print certain strings after append through repetitive statements? items = driver.find_element(By.CLASS_NAME, 'it...

2 years ago

1 answers
76 views
0
Python Google Spreadsheet Updates

Hello, I understand that the results of the response from the Google questionnaire are saved in the Google spreadsheet.I know the gspread that extracts the stored values. If you answer the questionnai...

2 years ago

1 answers
79 views
0
Creating Python nested dictionary lists into data frames Question

For example, the following nested dictionary lists are listed: a = [ {'info' : {'name' : 'hahaha', 'status' : 'True'} , 'price' : 500} ]I'd like to change it to the following data frame. 'name' 'stat...


1 answers
82 views
0
Jupiter address latitude translation code error AttributeError: 'NoneType' object has no attribute 'latitude'

https://wonhwa.tistory.com/29?category=996516Based on this post, I touched that it was the first code in my life.With the help of my friend, I set the environmentimport pandas as pdcsv = pd.read_csv('...

2 years ago

1 answers
130 views
0
pip install Google-cloud-speach error

Installing pip install --upgrade google-cloud-speech error appears in the virtual environment.Even if I use pip install --upgrade pip advised by the error, the error will continue to come outIf you ar...


1 answers
112 views
0
Question for implementing Python schedule and dispatcher integration.

import telegramimport scheduleimport timeimport sysfrom telegram.ext import Updater, MessageHandler, Filtersfrom bs4 import BeautifulSoupfrom selenium import webdriverfrom webdriver_manager.chrome imp...

2 years ago
« - 443 - »

© 2024 OneMinuteCode. All rights reserved.