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
72 views
0
Scroll down question in Python Selenium Web Crawling.

from selenium import webdriverfrom selenium.webdriver.common.by import Byfrom selenium.webdriver.common.keys import Keys from selenium import webdriverimport timedriver = webdriver.Chrome()url = 'http...


1 answers
48 views
0
Please help me with the full-length ceremony

04 2200-2330, 05-07 0730-0900 2200-2330, 08 0745-0915 2200-2330, 09 0730-0900, 04 JUL 22:00 2021 UNTIL 09 JUL 09:00 2021. CREATED: 30 JUN 07:01 202106-08 1300-2200, 10 11 0000-1400, 06 JUL 13:00 2021 ...

2 years ago

1 answers
17 views
0
Python Input/Output Double Quotes, Single Quotes Problem

Results to output: C:\Download\'hello'.pyError code: print( ' \C:\Download\\\'hello\'.py\ ')Correct Code: print( \C:\Download\\\'hello\'.py\ )Question 1. The difference between my code and the answer...

2 years ago

1 answers
19 views
0
I'm a beginner. Pyupbit question

If I enter it as above, is it correct that it becomes a selling order at the same time as the purchase order?The result wasn't sold outI don't know if the code is wrong or if the order was not made be...

2 years ago

1 answers
93 views
0
Dividing Data Frames Using Panda's Beginner Repeating Statements

Hello, Python. I'm a beginner at Panda's.Declare the entire data as F1I would like to declare it as data by dividing it 97 times by 2,000 eachThat is, F1_0 is from index number 0 to 1999, F1_1 is from...


1 answers
144 views
0
Python [::] What do you call this?

If you use a string or array in Python, a = '123456789'print(a[::])#Output: 123456789There are times when [::] calls are used as above. What do you call this function?

2 years ago

1 answers
57 views
0
Python regular expression question.

Each variable has a string and I want to combine them and compile them into regular expressions.This is the case below.import rea = [Question]b = [Answer]c = (Solution)message = [Question] I'm curious...

2 years ago

1 answers
85 views
0
The first time you want to go to the repeat using continue in a multiple repeat statement,

Hello, everyoneThere are several repetitive statements, and I want to start with the first repetitive statements under certain conditions, what should I do?I don't know what to do# Omit the above code...

2 years ago

2 answers
115 views
0
How to eliminate spacing due to Python print ','

a = input()print(a[:2],shprint(a[3:]Minutes)It comes out like this because I used and but how do I print out without spacing?(I want to minimize the running time!))

2 years ago

1 answers
17 views
0
Python beginner. Input and data type conversion questions SyntaxError: invalid syntax

The invalid syntax phrase keeps popping up Do you know the solution?

2 years ago
« - 423 - »

© 2024 OneMinuteCode. All rights reserved.