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
I want to extract the information I want from several json files and save it as a txt file.

{ info: { description: V0F_HY_4668_20210105_090409_E_CH0_Busan_Sun_Industrialroads_Sunrise_36019_BBOX JSON file, url: , version: 1.0, year: 2021, contributor: Konkuk_university, date_created: 20...

2 years ago

1 answers
19 views
0
I want to remove consecutive values from the Python list value and print them out.

# Received data# Delete input data if more than 5 data are the same number# Return remaining datanumber = int (input (Please enter the number of questions!))def get_data(): list = [] result_list = [] ...

2 years ago

1 answers
76 views
0
It is a problem to create a window program by linking with mysql using Anaconda's spider. It works normally in mysql, but if you run it in the spider, you will get a grammar error. (Long sentence caution)

import sysimport pymysqlfrom PyQt5.QtWidgets import *def connectDB(): host = localhost user = root pw = **** db = world conn = pymysql.connect( host= host, user = user, password = pw, db = db) return(...

2 years ago

2 answers
44 views
0
Wrap List Element

When the list is [0, 0, 0, 0, 0, 0, 0, 0], Output value is 0 0 0 00 0 0 0It's a situation where it has to come out as. I know how to print out each element, but I don't know how to tie it up as much a...

2 years ago

1 answers
43 views
0
Algorithm learning using Python KNN. Classifying handwriting.

Algorithm learning using Python KNN. Classifying handwriting. I'm in college, but the assignment is too difficult and I don't know anyone, so I'm asking you urgently.I'm sorry for posting this suddenl...

2 years ago

2 answers
17 views
0
Python Grid Labyrinth Problem

Python is really a beginner. It hasn't been long since I started.The study group gave me a question, but I didn't get close yet and asked, so Python gave me a questionIf you solve it, I'll analyze it ...

2 years ago

1 answers
47 views
0
Outputs special character cascades using Python functions

It outputs special characters as many as the number of rows, and parameter 1 uses superposition for statement to output special characters parameter 2 How should I make a function code to enter the nu...

2 years ago

1 answers
16 views
0
When you want to loop around Python operators,

Navigating relationships between the Pandas columns.By drawing two columns, you want to explore which operation the target column comes from between which two columns. # This code is pseudo code based...

2 years ago

1 answers
116 views
0
Python tkinter image file

from tkinter import *window = Tk()window.title (Choose what you need right now)def myFunc(): if var.get() == 1: labelImage.configure(image=photo1) elif var.get() == 2: labelImage.configure(image=pho...

2 years ago

1 answers
146 views
0
[Python] Extracting Korean from the document

column caption='score inquiry base date' datatype='date' name='[Contractor-related filter (copy)]'param-domain-type='list' role='measure' type='quantitive'In these text files, Score check base date [C...

2 years ago
« - 457 - »

© 2024 OneMinuteCode. All rights reserved.