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
101 views
0
I want to be able to scroll in Tkinter

Thank you for your continuous support.Using Python 2.7's Tkinter, the GUI app scrolls You can do it (scroll the whole thing like when you look at a browser)I want to add a function.I tried to refer to...

2 years ago

1 answers
91 views
0
I don't know which blank is wrong.

This screen is the Python 3 interaction shell screen, but when I try to break the line after typing else: at the bottom, I get an image-like error for some reason.What's wrong?SyntaxError: inconsisten...

2 years ago

3 answers
33 views
0
How to process two lines in python or R

I'm learning Python and R on my own.abc de f...xID_1 11 17 32 962299 ID_2371 22 929 1139 ID_34321 241428 ID_49 1 99 78 21...ID_X From a table similar to the one above, I would like to calculate colu...

2 years ago

2 answers
24 views
0
I want to put letters and numbers in the list as a set.

date>a12345123451234>b123451234>c1234512x = [ ]A = [ ]with open(date) asf: for line inf: new_line = line len_count = len(new_line) if new_line.startswith(>): print(new_line) A= x.app...

2 years ago

1 answers
100 views
0
I want python to extract only the specified parts of the body from the mail file.

Thank you for your help.In response to an email I sent in the past, There is an e-mail file with my writing written on it. ^^---------------------------------------------------------------------------...


1 answers
22 views
0
Regarding pywinauto

#coding:utf-8from datetime import datetimefrom pywinauto import applicationapp=application.Application.start(notepad.exe)app.Notepad.Edit1.SetText(unicode(datetime.now()))app.Notepad.MenuSelect(u File...

2 years ago

1 answers
108 views
0
I don't know how to fix AttributeError.

Automatically generated sentences that look like 〇 っぽい using the Markov chainAfter installing python 3.7.2, mecab-0.996.exe, I ran learn.py at the command prompt to create a text file that automatical...

2 years ago

1 answers
107 views
0
Package written in requirements.txt is not installed in azure web app

I am developing an application using Flask as a template on Azure's app service, but I deployed it after describing the module name I wanted to use in the requirements.txt that fell with me when I clo...

2 years ago

2 answers
38 views
0
I would like to know how to extract only lines that contain specific strings.

It is about reading a file with multiple columns and retrieving the row by row if one column contains a specific string.Specifically, I would like to know how to extract only lines containing Mr from ...

2 years ago

1 answers
102 views
0
Change the Python Version in anaconda

I tried to match the local and remote python versions to publish the application on the web, but it didn't work.I am using python 3.9.7 which comes with anaconda, but I would like to match the version...

2 years ago
« - 91 - »

© 2024 OneMinuteCode. All rights reserved.