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
14 views
0
Python level is different.

Once you see the version in the Python shell, It comes out in 3 versions like the picture above, but when I checked it in cmd,Is it coming out in 2 versions?

2 years ago


2 answers
15 views
0
Python File Input/Output

I don't understand file input/output well...]\filename = input (input filename: )outfilename = input (output filename: ) infile = open(infilename, r)outfile = open(outfilename, w)s = infile.read()outf...

2 years ago

1 answers
13 views
0
Function to retrieve index from Python (simple question)

Question 1) For example, a=[2,3,4,3,2]a.index(2) will result in 0.I know that the .index() function calls only one index that matches the first value in parentheses.Is there a function that returns th...

2 years ago

1 answers
14 views
0
Why doesn't the list in the for statement in Python get the items in order?

#Write your function heredef delete_starting_evens(lst): lst_temp = lst print(--------------) print(lst,lst) print(lst_temp,lst_temp) for i in lst: print (i,number) if i%2 ==0: print(i,even) print(lst...

2 years ago

1 answers
53 views
0
How do I find my local ip address?

Regardless of platform, use standard libraryPlease tell me how to find the local ip address (192.168.x.x or 10.0.x.x)

2 years ago

1 answers
102 views
0
How to convert csv file data using Python

In the csv file, the values of the 'Date' column are expressed as 'dd-Jul-yy', but I want to change them all to 'yyy-mm-dd' How do I do this? Python masters, help me

2 years ago

1 answers
130 views
0
Is there any way to print it without any spaces in Python?

In C, for(i=0; i<3; i++) printf(.);Lower face ...It came outIn Python, for i in range(0,3): print(.)Lower face ...It comes out like this.How do I make it look like C?

2 years ago

1 answers
56 views
0
Send web API signal from python API.

Hello. Python studying in Python flask in Ubuntu environment.I want to send a signal to the web in the middle of the work, but when I looked up the SSE (server sent event) example, it returned at the ...

2 years ago

1 answers
113 views
0
I'm studying basic Python. I have a question

We are trying to create an age notification system using the difference between dates. But the date mark that I've known so far is date mark like this (2019, 11, 30) through the date grave. But I want...

2 years ago
« - 301 - »

© 2024 OneMinuteCode. All rights reserved.