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
20 views
0
ListInvalidSyntax

k=[Hakgua = [Chemical name, Chemical name, Chemical name, Urban engineering, Urban engineering] hakbun= [202001, 202002, 202003, 202011, 202012]irum = ['aaa', 'bbb', 'ccc', 'ddd', 'eee']chongjum= [98,...

2 years ago

1 answers
51 views
0
Counting the number of items in the Python list

num=[1,2,2,3,3,4,4,4,4,4]How can I count the number of duplicate entries in this list?The count function should not be used and should be counted using a for repetitive statement.

2 years ago

1 answers
80 views
0
Get Python csv file and get maximum, variance with numpy

import numpy as npimport matplotlib.pyplot as pltimport csvdata_file_name = One year temperature in Seoul.csvf = open(data_file_name)temp_data = csv.reader(f)temp_month = [[], [], [], [], [], [], [], ...

2 years ago

1 answers
14 views
0
I'd like to ask you a question after making Python multiplication tables.

I was trying to solve this kind of problem, and I filled in the blanks with that thought.But I don't know what to fill the matrix and append to print the multiplication tables as in the example.ㅠ

2 years ago

1 answers
80 views
0
I'm curious about how to increase the number in brackets using Python iterations.

Hello. I'm asking you a question because I'm stuck while studying Twitter crawl on Python.I thought the problem would be solved quickly because it was very simple, but I can't think of a solution.//im...

2 years ago

1 answers
65 views
0
Python class cat was defined, but cat was not defined.

class cat: def __init__(self, name, age): self.__name = name self.__age = age def setname(self, name): self.__name = name def getname(self): return self.__name def setage(self, age): self.__age =...

2 years ago

2 answers
16 views
0
List only file names that contain specific phrases in Python listdir content

os.listdir()This is the content of the list using Quarterly report (2017.09) Samsung Electronics' consolidated cash flow statement.csv',Quarterly Report (2018.03) Samsung Electronics' consolidated fin...

2 years ago

1 answers
21 views
0
From Python to 100, we're going to divide it into 10 units and give each section a chance to pick 5

random.choices(range(1,100), weights = [1,2,1,1,1])How can I cut it off in 10 units?

2 years ago

1 answers
57 views
0
When I input the input value on the HTML homepage, I want to print the result of using the input value as a variable while executing the py file.

Situation ex)Input: 3 -> What is entered in py. Gugudan of the input value (only an example, the actual code is very Kim) -> Output the execution result of py to html (graph or character) When I...

2 years ago

2 answers
100 views
0
PYTHON] How to start in the middle, not the first time, when operating a for door with a list or a panda?

Hello, I'm a beginner at PYTHON. So please understand that the level of questioning can be very low.foriiin list variable: print(ii)When you run with , the list variable always starts from the beginni...

2 years ago
« - 368 - »

© 2024 OneMinuteCode. All rights reserved.