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
21 views
0
Python Web Crawling, how to select a specific anchor among multiple anchors in html

I'm a beginner at Python web crawling. The goal is to extract the Naver News Inlink address using Beautiful Soup.In other words,In the attached image, https://news.naver.com/main/read.nhn?mode=LSD&...

2 years ago

1 answers
13 views
0
Python Web crawling data has different tags

Cropped web page: https://finance.yahoo.com/quote/AWR?p=AWR The tag of other imported parts is span, but only the part of Forward Divide & Yield is td, so I modified this part to write a code to r...

2 years ago

1 answers
13 views
0
This is a question about creating a python list.

list = [0 for i in range(10)]+[1 for i in range(10)]+ ... +[n for i in range(10)]I want to make a list using the for statement, but I tried the above code.Is there an easy way to do it in one sentence...

2 years ago

1 answers
15 views
0
Remove @ before python question string

username = input()while True: myorder = input() if myorder.startswith('@'): print(myorder + ' ' + username + '.' )If you put your name in username and @Hi in myorder, @Hi name. will be like '@Hi name...

2 years ago

1 answers
16 views
0
Installing a [Python] package offline

Nice to meet you.I am developing it on a PC that doesn't have internet.I downloaded 2 packages online because I heard that there is no bcrypt package.I saved it on the PC as a separate delivery progra...

2 years ago

2 answers
44 views
0
Can you extract two indexes from the list (using for...))

I tried to combine Ji-Soo Young-Cheol-hee and extract her name (e.g. Ji-hee, Su-cheol, Young-soo, etc.).So the desired result is Jihee 40 150Water iron 50 200Youngsoo 45 190....That's what I wanted to...

2 years ago

1 answers
14 views
0
Question about Python for statement.

list =list(range(0, 20))a = []for i in w: if i >= 7*0 and i < 7*1: a.append(0) elif i >= 7*1 and i < 7*2: a.append(1) . . . . elif i >= 7*n and i < 7*(n+1): a.append(n) else: a.a...

2 years ago

1 answers
100 views
0
Predicting accuracy with one Python logistic regression column

I'm studying how to code the accuracy of two categories from Cycitron Wisconsin breast cancer data.There are a total of 569 rows of data, and 30 columns to distinguish them.The code I studied previous...


1 answers
15 views
0
Reading numbers in python string

Hi, everyone.Using Python to read the file containing the numerical values as shown below-.8680573292E-010.1152196690E+010.2468541257E+010.9869345231E+00-.3400007235E+000.1368798619E+01-.1919632517E+0...

2 years ago

1 answers
18 views
0
Python questions

username=input()print(\nComand using '@,!,$' - Ex: @Hi, !Melon, $Google.\n)Menu = {Chat: ['Hi','Hello', 'Bye'] ,Songs: ['Melon','Bugs','Spotify'] ,Search: ['Google','Daum','Naver'] }print(Menu) whi...

2 years ago
« - 407 - »

© 2024 OneMinuteCode. All rights reserved.