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
80 views
0
I'm going to practice crawling with Python, but I'm asking because the for door doesn't turn around.

from selenium import webdriverfrom bs4 import BeautifulSoupimport sysimport timedriver = webdriver.Chrome(c:/Users/user/Documents/VScode/chromedriver.exe)driver.implicitly_wait (3)URL = http://www.med...

2 years ago

2 answers
49 views
0
Open Python json file - if the file does not exist

I will open the json file in Pysun, but if there is no file, I would like to inform you that there is no file through the print statementWhat should I write in this case?

2 years ago

1 answers
19 views
0
Separated by string pattern

If you have strings like this, I want to get only strings with date patterns.Is it possible to filter out only certain strings by pattern? of # example data.a = ['Vaasa Lama the Korean alphabet'On Feb...

2 years ago

2 answers
46 views
0
Putting individual lists together

lang_type=['ko','en','es','vi']text_src = translator.translate(user_text).srcif text_src==lang_type[0]: telegram.Bot(TelegramToken).send_message(user_id,translator.translate(user_text, dest=lang_type...

2 years ago

1 answers
18 views
0
I have a question for Python's novice.

from random import *lotto_num = []for j in range(7) : for i in range(1, 8) : number = randint(1, 46) while number in lotto_num: number = randint(1, 46) lotto_num.append(number) lotto_num.sort() p...

2 years ago

1 answers
49 views
0
How to crawl web pages that change the active tab after page loading into Python?

Hello.Writing code for crawling.https://www.decantalo.com/kr/en/at-roca-brut-reserva.html#/1-volume-75_cl/111-year-2018If you run the URL above with a browser, you can see that the 2019 tab is activat...

2 years ago

1 answers
49 views
0
Questions about Pandas

After using Pandas to load the accelerator,

2 years ago

1 answers
84 views
0
Python List Compensation. Here'

a = ['1', 'a', '3', 'c'], ['e', 't', 'h', '3'], ['u', 'y', 'p', '2']b = ['u', 'y', 'p', '2'], ['4', 's', 'a', 'x'], ['8', '9', 'y', 'w']q = [w for w, s in zip(a, b) if 'a' not in (w and s)]e = [s for ...


1 answers
50 views
0
I have a question while creating a long-range model.

By importing user models (1)from django.conf import settingsuesr = settings.AUTH_USER_MODEL(2)from django.contirb.auth import get_user_modeluser = get_user_model()What's the difference between (1) and...

2 years ago

2 answers
19 views
0
Dictionary in Python List

There is a dictionary in the list, and I want to extract this value only, so can I know how to do it?abc = [ Number one Number 2 Number 3 {pc : i7-10700, info : {price : KRW 100000, year of releas...

2 years ago
« - 444 - »

© 2024 OneMinuteCode. All rights reserved.