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
131 views
0
Python capitalization, string division

a = When there is a string called Aaron MOOYAustralia MidfielderYou are about to add a spacing or - separated by a name country position.To do that, you want to find the part that is separated by lowe...

2 years ago

1 answers
59 views
0
You are about to delete all jpg files that have the same name in the Python directory. Please help me a little bit

import sqlite3import osimport shutilconn = sqlite3.connect('database.db')c = conn.cursor()uname = input(Enter your name: )c.execute(DELETE FROM users WHERE id=(?),(uname,)) if os.path.exists(./dataset...

2 years ago

1 answers
45 views
0
Questions about Jango membership!

Even if I register as a member, I can't check it on the administration page, so I can't save it in the database, but I don't know where it went wrong.Register.html code.<html> <head> <l...

2 years ago

1 answers
127 views
0
Using the time module 1.1 * 1.2 * ... * 10.1 (increase by 0.1) and 1 * 2 * ... * How do I print out the time it takes to perform 100 (increase by 1)?

Using the time module 1.1 * 1.2 * ... * 10.1 (increase by 0.1) and 1 * 2 * ... * How do I print out the time it takes to perform 100 (increase by 1)?

2 years ago

2 answers
157 views
0
I want to print letters and numbers alternately on Python.

1 #!/usr/bin/env python 2 3 import os 4 import subprocess 5 import sys 6 import shlex 7 import matplotlib.pyplot as plt 8 import re 9 10 def runCommand(command): 11 popenArgs = shlex.split(command) 1...

2 years ago

1 answers
147 views
0
Time.sleep is thread sleep? Process sleep?

time from Linux/UNIX to Python.Does sleep() block only one thread?Or do you block the entire process?


1 answers
21 views
0
Is there a way to create a variable name for [Python]string?

[abcd, eiei, skwk] There's a list with stringsUsing this list,abcd_resulteiei_resultskwk_resultHow do I create variables such as ?

2 years ago

1 answers
111 views
0
Python Selenium error and iframe tag content is missing from the source loaded by the web driver.

There is an iframe tag on the website I am testing and I need to click the button (a tag) that exists in this tag. If you look at it with the developer tool in your browser, you can see that it contai...


1 answers
111 views
0
Double for statement question during scrapy crawling.

Scrapy Spider Creation Question.I'm writing a simple code and testing itThe problem is saving the DB of the item that wrote the double FOR statement.The item scrap area of the spider is shown below. d...

2 years ago

1 answers
104 views
0
I'm going to make a web service with WordPress

I keep asking similar questions because of frustration...I don't know much about this field and I've worked on many projectsIt's too much for me to master Python, Django, and do it aloneCreating a web...

2 years ago
« - 262 - »

© 2024 OneMinuteCode. All rights reserved.