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
140 views
0
Django function declaration question.

In the Django tutorial, functions in the views file receive requests without receiving self as the first parameter.I know that the Python function must receive self as the first parameterI wonder what...

2 years ago

2 answers
116 views
0
Python for Moon Question

Number 1 hap=0for a in range(1,11): hap=hap+a print(hap)Value is 13610152128364555Number 2 hap=0for a in range(1,11): hap=hap+aprint(hap)The price55Number 3 hap=0for a in range(1,11):hap=hap+aprint(ha...

2 years ago

1 answers
96 views
0
Django, Python novice to develop?

Hi, everyone. I'm coding newbie who just entered Python and Django world.I've never studied another program language beforeI think it would be very helpful to study if I made my own service (relativel...


2 answers
49 views
0
I have a question regarding import from Django.

Python, I have a question. If you look to the left, the folder structure is displayed.By the way, if you import from views, you will see a warning sign if you do from login.forms import *Running the p...

2 years ago

1 answers
109 views
0
Find the best Database connection module in Python.

I'm a beginner at Python.I'd like to add a database module (mysql) and do this and that. https://pypi.python.org/pypi?%3Aaction=search&term=mysql&submit=searchIf you look here, you can see a l...

2 years ago

1 answers
68 views
0
I'd like to enter the contents of the model in two classes on one page

I'm a beginner who just started studying janggo. How can I save the entire model contents as shown below by entering it into a form on one page (HTML)? Class view is being used.from django.db import m...

2 years ago

1 answers
45 views
0
Is it possible to capture packets for a specific IP with java, python, node.js, C#, etc.?

Without wireshark or other external programs,I would like to know if packet monitoring is possible for a specific IP on the network.Also, if possible, I would like to know how it is possible!!!

2 years ago

1 answers
133 views
0
How to protect your Python code

I am developing software that will be distributed to customers with Python now. The boss wants to restrict the use of the software by placing a part-time license.The problem is that if you distribute ...


2 answers
55 views
0
Django Templates, NameError error question.

I'm running a Jango Girls tutorial but it's not working wellFirst of all, this is the error.NameError at / name 'posts ' is not defined#mysite/views.pyfrom django.shortcuts import renderfrom django.ut...

2 years ago

1 answers
126 views
0
I have a question for PyQT.

# button self.Login_Button = QtWidgets.QPushButton(LoginFrom) self.Login_Button.setGeometry(QtCore.QRect(230, 220, 111, 41)) self.Login_Button.setObjectName(Login_Button) self.Login_Button.clicked.con...

2 years ago
« - 207 - »

© 2024 OneMinuteCode. All rights reserved.