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


3 answers
13 views
0
Python for Moon

When you want to print out bc three times Number 1 for bc in range(0,3) print('bc')In this way, it is described in the book the same way as the bc in the for door and the bc in the print.Number 2 for ...

2 years ago

1 answers
15 views
0
Python

I also want to arrange the row with \n to the right, but when I used rjust, only the first line was aligned.How can't the columns that go down also align to the right?

2 years ago

1 answers
13 views
0
I would like to ask you an output question through Python txt file return.

In the txt file, mix the words that are Hoemun and the words that are not Hoemun, and separate the words with enter.abbagooloogsosoassaososbecamesmilimslevelmadammom...You read a text file in this way...

2 years ago

1 answers
104 views
0
Chrome dirver crawling_1_modified (add url)

url ='https://play.google.com/store/apps/details?id=tools.photo.hd.camera&hl=en'title = driver.find_element_by_xpath('//title')print(title.get_attribute('content'))None is the result of this code....


1 answers
81 views
0
To get the last date in a specific month?

Is there a way to find out how many days are in a particular month using Python standard library?It would be nice if it was a standard library, but if it doesn't have that function, other packages rel...

2 years ago

1 answers
142 views
0
I have a question for Python while.

def binary_search(array, goal): low = 0 high = len(array) - 1 while low <= high: mid = (low + high) // 2 if goal > array[mid]: low = mid + 1 elif goal < array[mid]: high = mid - 1 else:...

2 years ago

1 answers
14 views
0
[Basic Python] Questions when you process Excel data with Python.

Hello, I am a student who is learning Python basics at school.I'm currently studying how to process Excel data (csv) with Python. It's hard to do it alone.For example, an Excel file (only numbers are ...

2 years ago

1 answers
105 views
0
I'm asking you a question

Hello, I'm asking you a question because I don't understand while studying data analysis with PandaSas.def make_generation(age): if age == -1: return 'Not entered' elif age // 10 >= 4: Late 30s e...


1 answers
125 views
0
Questions during Python Scrapy tutorial

Hi, everyone.I'm asking you a question because I don't know anything while studying while following the scratch tutorial.The code is as follows.def parse(self, response): for href in response.css(ul.d...

2 years ago

2 answers
153 views
0
Python mapping basic questions

calories={ 'Flour': 364, 'Pepper': 20.1, Olive: 115, Pork: 242.1}def Calories (name,kcal): return calories.get(name)*kcal//100print (calories ('pork',500))print (calories (beef, 500))Here, the result ...

2 years ago
« - 282 - »

© 2024 OneMinuteCode. All rights reserved.