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
113 views
0
I don't know the cause of Python TypeError. (scipy.optimize)

def func_y(x, a): return (1 + a) * x / (a + x) #TypeError: can't multiply sequence by non-int of type 'float'a = 0.0462x = [0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1.0]y = func_y(x, a)popt, pcov ...

2 years ago

1 answers
74 views
0
Python entry questions when clicked

When I type in entry, I want to delete the existing contents when I click entry, what should I do?I know you can erase it with Entry.configure() or with Entry.delete(0, END)I don't know how to make it...

2 years ago

1 answers
13 views
0
Python case-sensitive question

def passwordStrength(password): point = 0 for i in range(len(password)): if password[i].islower: point = point + 5if __name__ == '__main__': print(passwordStrength('f^BAcG'))The .isupper() function ...

2 years ago


1 answers
17 views
0
I'm going to add more and more

I have to solve this problem I wrote the code like this, but if the time interval goes over 60 minutes, if it goes well, there's an error when it's less than 60 minutes If there is no error when it i...

2 years ago

1 answers
16 views
0
Code to obtain the day of the week when entering Python date

If you enter a date in Python (yyyy.mm.dd) and enter April 1, 2021 in the code to obtain the day of the week, it will print Friday, not Thursday. We've done a lot of output and it's normal until Febru...

2 years ago

1 answers
15 views
0
Enter the second number associated with the first number

Hello.I have a question because there is a blockage while programming with Python.I'd like to write a code that specifies the range of the first number, and then receives the number of the first numbe...

2 years ago

1 answers
16 views
0
To extract specific time zones that are close to Python

in PythonI'd like to collect data from the Meteorological Agency.API data is updated every day at 06:00 am and 18:00 pmThe request time information must be passed as a required parameter.Is there a si...

2 years ago

2 answers
13 views
0
I have a question for Python masters

**Enter**How are you How is it goingIf you enter it like this **output**How : 2are : 1you : 1is : 1it : 1going : 1I'm planning to make a program so that it comes out like thisdic = {}a=input().split()...

2 years ago

2 answers
13 views
0
Create an English dictionary with Python for in syntax

I am making an English dictionary using for in syntax. dic = { 'apple' : 'Apple', 'banana' : 'banana', 'orange' : 'orange', 'music' : 'music', 'door' : 'door', Bear : Bear, 'dog' : 'dog', 'cat' : 'Cat...

2 years ago
« - 409 - »

© 2024 OneMinuteCode. All rights reserved.