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
115 views
0
Question about the result value that appears when the list is not added to the Lambda function (python)

a=[1,2,3,4,5,6,7,8,9,9,1,5,4,32,2]a=map(lambda x :x*10,a)print(a)I used the Lambda function to do the things on the list at once *10.But if you don't put a list,map object at 0x000002659B33DF10Is that...

2 years ago

1 answers
66 views
0
Matrix Configuration Question (matrix values between matrix values at specific coordinates)

Hello, I'm a student studying Python.I'm writing the code that makes up the matrix I have a question because there's a traffic jam TT If there's a matrix like picture number one, I want to construct a...

2 years ago

1 answers
18 views
0
A function that returns the results of a Python multiplication table to a list

You're writing a function that returns multiplication results to the listdef gugu(a): b = List of multiplication table results for stage a return bThe teacher wants to do thisI don't know how to fill ...

2 years ago

1 answers
18 views
0
break outside loop

import randomwhile True: name=input('What is your name?:') print(name 'sir', 'hello?') dice=random.randint(1,6) if dice==1: print ('.'.') elif dice==2: print('n.') elif dice==3: print('.'.') elif d...

2 years ago

1 answers
20 views
0
To compare n and N simultaneously in a Python conditional statement

import randomwhile True: name=input('What is your name?:') print(name 'sir', 'hello?') dice=random.randint(1,6) if dice==1: print ('.'.') elif dice==2: print('n.') elif dice==3: print('.'.') elif d...

2 years ago

1 answers
27 views
0
Synthetic code questions from Python novice 1 to n

num=int (input (Enter a number that you want to add up)i=1sum=0while i <= num: sum=sum+i i=i+1print(the sum of 1 to num is :,sum)I'd like you to tell me why you specify the i, sum variable and why ...

2 years ago

2 answers
20 views
0
Code to find the sum of multiple of Python novice 3

num=int (input (Enter a number)i=1sum=0while i <= num: i=i+1 if (i%3) != 0 : continue sum=sum+iprint(The sum of the multiples of 3 from 1 to,num, is :,sum)Please tell me why i initializes to 1 and...

2 years ago

1 answers
84 views
0
What kind of alignment is this?

[0, 6, 7, 9][6, 0, 7, 9][7, 0, 6, 9][9, 0, 6, 7][9, 6, 0, 7][9, 7, 0, 6][9, 7, 6, 0]I'm asking this question because I can't find what kind of arrangement it is.This is the Python question for the fir...

2 years ago

1 answers
99 views
0
Differences between Python datetime and result values according to date class changes

It's a program that measures the time left until Christmas.import datetime as dta=dt.datetime.today()print(f) Today is {a.the month of the yearIt's day}.')xmas=dt.date(2022,12,25)su=xmas - dt.datetime...

2 years ago

1 answers
78 views
0
I made an exe file with Pyside2, what should I do with the license before distribution?

I'm asking because I couldn't find it even if I searched for two days. I don't have a clue where and how to display the copyright. I used selenium, clipboard, and pyside2.

2 years ago
« - 460 - »

© 2024 OneMinuteCode. All rights reserved.