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
40 views
0
Python selenium ActionChains Pre-Run Action Repeat Error

Currently, we have proceeded with the address input and search function, but there is an error, so I am asking you this question.I have used Selenium ActoinChains several times. You are using action.r...

2 years ago

2 answers
85 views
0
If you type in the console window that appears when you run the Python program, can you basically input Korean without pressing the Korean-English conversion key?

I made a Python program, and when I run it, the console window pops up and the results come out when I enter some data. By the way, all the data you enter is in Korean, so I'd like you to enter it in ...

2 years ago

1 answers
77 views
0
Is there a way to install Python's pip in the closed network?

There is a closed network server that can be accessed only by VPN. I'm using the Linux (Ubuntu) OS.Python 3.5.2 is installed, but there is no pip installedYou cannot use commands such as piplist.I wan...


1 answers
77 views
0
To convert Matlab code fullfile('export', datestr(now)) to Python

Switching matlab code to Python.I'm having a hard time switching fullfile('export', datestr(now)),I only knew until datetime.datetime.now() to extract the current time.How can I change it to Python co...

2 years ago

1 answers
16 views
0
I'm trying to find a number that's Python symmetrical

list1 = []for i in range(1,1001): str1 = str(i) for j in range(0,len(str1)): if str1[j] == str1[-1-j]: list1.append(i)print(list1)Like 12321, we try to find the same number in the middleSince it's s...

2 years ago

1 answers
91 views
0
jdbc driver error when connecting msql(sql server) in spark...

ubuntu 18.04.4LTSpython 3.6.9 spark 2.4.6When connecting to mssql after a jdbc call using a command such as spark.read.format()... to pyspark in the environment, we used it well without any connection...


1 answers
56 views
0
Question for statement in the Pandas dataframe.

Hello, everyone It's been a while since I asked you a question.In the next picture, the expression in the for statement Can we turn it back to the For Moon one more time instead of like that? What can...

2 years ago

2 answers
18 views
0
I have a question regarding Python input and output. (Newbie)

water=[2,3,4,5]fire=[6,7,8,9]list_redblue=[water, fire]answer=input('input=')if answer in list_redblue: print(answer)else: print('You have entered it incorrectly.') When I was fire have been entered, ...

2 years ago

1 answers
15 views
0
Class Creation Decommission

class cls: log = [] def __init__(self, name): self.name = name print (self.name + Create.) def add(self, val): self.log.append(val) def __del__(self): self.log.clear() #########################...

2 years ago

1 answers
42 views
0
Python Pandas Put a Value in a Specific Cell

Hello.I'm asking you a question because there's something I don't know while using Pandas.In certain columns, I want only the first row of data to be entered and the rest to be empty, but I don't know...

2 years ago
« - 380 - »

© 2024 OneMinuteCode. All rights reserved.