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
116 views
0
Is there a rule when naming variables/functions in Python?

In C#, when naming variables/functions, there were implicit rules such as CamelCase and PascalCaseI wonder if Python also has this rule.string thisIsMyVariable = apublic void ThisIsMyMethod()this_is_m...


1 answers
12 views
0
Python Dictionary Output

I'm going to enter my class number and grade and save it in a dictionary and enter my class number again to print out the grade corresponding to that class. def gra(a): returndef num(b): returndic={} ...

2 years ago

2 answers
15 views
0
(Beginner) There are some things that don't work as web crawlers "T"

On the same website (e.g., two people's auction), I entered the categories Auction and Short Sale and I am studying webcrawling.Row 3 is auction, Row 4 is auction, If you run the auction (line 3 url_)...

2 years ago

1 answers
12 views
0
Can I use multiple variables when using Python format characters?

When you use a repeating statement in Python, there are multiple values in one variableI wonder if it is possible to use the format function specified by one variable when printing.import sqlite3class...

2 years ago

2 answers
44 views
0
Creating a chat program with django! I have a question!

I'd like to create a chat program on the web, not go to the CHATTING ROOM page and chat, but like chatting on Facebook, I'd like to implement it so that if you press a button on the page you're lookin...

2 years ago

1 answers
15 views
0
Python question

I loaded the text file, read it, and saved itI want to bring in a text file so that the numbers can be read in Korean.If an existing file has 30I hope the saved file says 30What should I do?

2 years ago

1 answers
76 views
0
How to send Python cookies

I made a web server using Python and mysql Apache 2. I want to use Python here to send cookies or sessions and use other Python files to receive the cookies and keep them logged in. I looked it up and...

2 years ago

1 answers
38 views
0
I'm asking you a question about cython reload().

Hello,I'm using cython for fast code executionI do reload() to reuse the module implemented as cyton as another parameter, but it doesn't work. It continues to run with the previous value, not the cha...

2 years ago

1 answers
106 views
0
I have a question about Python crawling. (Second...)

Following yesterday's question, I ask you a question.import urllib.requestimport bs4x=informationurls[4] #informationurls is a list of more than 1000 urls in str formi=[]html = urllib.request.urlopen(...

2 years ago

1 answers
18 views
0
Taylor function statement error

import mathclass tail: def facto(a): fac = 1 if a == 0: fac == 1 else: while a != 1: fac = (fac * a) a -= 1 return facdef asd(i): if (i % 2) == 0: a = 1 else: a = -1 return adef sin(x,i): a = 0 ...

2 years ago
« - 300 - »

© 2024 OneMinuteCode. All rights reserved.