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
18 views
0
Please give me an answer regarding the method of calculating the median potential

class Node: def __init__(self,item,link): self.item=item self.next=linkdef push(item): global top global size top = Node(item, top) size += 1def peek(): if size != 0: return top.itemdef pop():...

2 years ago

1 answers
108 views
0
Python function management methods

There are so many functions created while programming with Python that it becomes difficult to manageIn general Python programming, each function (or function that performs similar actions) is used Do...

2 years ago

1 answers
17 views
0
Python Dictionary Phone Book

.. How can I create a code that allows users to enter their friends' names and numbers, save them in a dictionary, and search their names and phone books when they are saved?I'm not good at receiving ...

2 years ago

2 answers
74 views
0
Questions about Python Pandas dataframe

colum 1, colum2a,b,c 30b,c,f 40a,g,z 50...In this data frame, I would like to construct column4 by adding the value of column2 corresponding to a.column3, column4a 80b 70c 70f 40g 50z 50I wou...


1 answers
123 views
0
Which one should I use, Python crawl?

Hi, everyone.I am mainly developing the web with PHP.We are planning to develop a crawling program in which the necessary functions are collected in relation to orders/queries/claims on the seller's p...

2 years ago

1 answers
123 views
0
Find only one last string without using Python find function method rfind

def findLast(filename,key): infile = open(filename,r) outfile = open(result.txt,w) text = infile.read() position = text.find(key) if position == -1: outfile.write(key + is not found.\n) else: outf...

2 years ago

1 answers
53 views
0
When using chrome driver in Python selenium, should I close the driver with quit or close even when using headless mode?

When using chrome driver in Python selenium, do I have to close the driver with quit or close if the necessary work is done?

2 years ago

1 answers
30 views
0
[Python]Use a repetitive statement to find the digits of the entered integer

I want to code to find the number of digits of the integer when I enter the integer using the repetition sentence.Let's put an integer in gI tried to print the (i+1) value by dividing g continuously b...

2 years ago

1 answers
18 views
0
Python question

How can I write a program that counts the number of characters in a string?

2 years ago

1 answers
14 views
0
Putting multiple element values in a for statement

a = [Eulji]b = [2]c = [10,20,30,80]d = [31,52,33,52]{Region: Gangnam, Person: 2, Time: 10, Land number: 31}{Region: Gangnam, Person: 2, Time: 20, Land number: 52}{Region: Gangnam, Person: 2, Time: 30,...

2 years ago
« - 229 - »

© 2024 OneMinuteCode. All rights reserved.