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
108 views
0
I have a question because the Linux Python version has not been changed.

Existing Python version is 3.6 I tried to change it to Python 2.7 because the module I was going to use didn't work.So even though I changed Python like the capture screen, it keeps coming out as 3.6....

2 years ago

2 answers
102 views
0
In Python, the values come in dictionary form. I want to use the len function to get the largest number, but what should I do?

I'm coding to get the value I want from Python.First of all, I specified a value for c and r and appended it to shot_listAnd we used print(len(set(shot_list))) to see the largest number here There are...

2 years ago

1 answers
26 views
0
Python Recursive Function Factory Value

def fact(n): if n==1: Call print('fact('n',) function! ') return 1,print ('fact(',n',)value ',1,'return') else: print('fact('n',) function call!! ') return n*fact(n-1), print('fact('',n',)value re...

2 years ago

1 answers
60 views
0
Selenium crawling question

**********<Example Code>*********************from selenium import webdriverlink = [https://www.naver.com, https://www.google.com, https://13.59.54.26:443, https://www.daum.net]for i in link:driv...

2 years ago

2 answers
86 views
0
The coding of the exchange rate calculator using for door and tuple is blocked, so please give me a hint!

mymoney = input (ex. $100:)mymoney_sep = mymoney.split()mymoney_flo = float(mymoney_sep[0])toexch = input (Types of currency to exchange (ex. dollar, yen, euro, yuan, won):)# exchange = {'usd': 1167, ...

2 years ago

1 answers
20 views
0
[Python] I'm asking you a question about a code (for, while, dictionary, input) that outputs the time that all n team members can have a meeting!

Hello, I'm Corinne. I've been learning Python for about a month.The code I want to implement is If you enter the time of the month and day (n to n) that n people can meet, I'd like to print out a prin...

2 years ago

1 answers
24 views
0
I want to erase the unnecessary name of the image file in a specific folder.

In the folder C:\Users\Administrator\Downloads\T000230_2022-07-14_05-02-44.png,000140_2022-07-14_12-43-38.png,000105_2022-07-14_12-54-49.png,There are these files. 6 digits in front of the file 000230...

2 years ago

1 answers
137 views
0
How to turn a Python structural program into an object-oriented program

kors=[]def print_menu(): print ('\nGrade Processing Program') print ('1. Score input') print('2. Grades output') print ('3. Exit') print(-*20) menu = int(input('select action(1~3) :') return menudef i...

2 years ago

1 answers
132 views
0
Logistic Regression Question

Hello. I'm asking you a question because I couldn't understand while doing my university assignment.A problem that creates a logistic regression model and outputs model performance through a training ...


1 answers
20 views
0
This is a question related to the string index out of range error that came out when I tried to change the string by mistake

I'm a beginner! I keep getting these errors, so I don't know why...import csv f = open ('complexity_20191231.csv') confuse = csv.reader(f) next(confuse) confuse = list(confuse)len(confuse[0])for row...

2 years ago
« - 462 - »

© 2024 OneMinuteCode. All rights reserved.