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
22 views
0
Baekjun Python 10171 Cat Backslash Question

Cat problem: https://www.acmicpc.net/problem/10171http://boj.kr/3bac403ef5a64e27a7035cfec8c6b5d5I looked on the Internet and made a code like thisBut to print out the backslashes, you need two backsla...

2 years ago

1 answers
100 views
0
Python and Atom When it comes to programming, I really don't know the p of programming.Please help me

Even though it is not a major, I have to force it because it is a mandatory subject at school.I don't know what you're talking about, and I don't know what to do.I think they want me to make that resu...

2 years ago

1 answers
12 views
0
I have a question for Python

If you bring a text with the name of a listed company in Korea and have a specific company name,I'm implementing it to print ha, but somehow the result doesn't come up... Corplist = open('listed compa...

2 years ago

1 answers
38 views
0
Returns the location of a node deleted from the Simple Connections list (modify)

How do I modify the location of the node I deleted here?class SinglyList: class Node: Def __ init and __ (self, data, link) : #### node created. self.data = data self.next = link Def __ init and ...

2 years ago

1 answers
75 views
0
When running with Python subprocess. There is an error because only the local library is loaded.

I made an anaconda python 2.7 virtual environment and am interpreting it.As a subprocess module curl process method a.If you run the py file... I didn't write an anaconda environment library, but I co...

2 years ago

1 answers
104 views
0
I'd like to break up the list elements into four pieces and approach them

You want to split four elements into a list that stores only integers.Right now, it's just i+1, i+2,... Is there any other way?It hasn't been long since I came over from C, so I keep coming up with th...


1 answers
99 views
0
Python multiprocessing

Is there a way to kill all the child processes at that moment and measure the time when you find the correct answer in this program?import multiprocessingimport timeimport sysstart_time = time.time()d...

2 years ago

1 answers
20 views
0
I'm not sure what Python shell=True is doing

I'm working on a shell script using Python (Python 2.6.x version).The subprocess package has been used.I searched and found that some people use shell=True and others don't. I don't see the difference...

2 years ago

1 answers
16 views
0
The #ifdef moon from Python?

From C #define TEST_MODE1#define TEST_MODE2#ifdef TEST_MODE1Code executed only in test mode 1#endif#ifdef TEST_MODE2Code executed only in Test Mode 2#endif#ifdef TEST_MODE1#ifdef TEST_MODE2Code execut...

2 years ago

1 answers
17 views
0
It's Python rock paper scissors Please answer me

It's the Python rock-paper-scissors that I made. I'm asking you this question because I don't know which part and how to fix it after receiving feedback.This is the feedback I gotReflect player is a c...

2 years ago
« - 286 - »

© 2024 OneMinuteCode. All rights reserved.