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
16 views
0
Python Tkinter Image File Location Question

I want to use import os so that I can use this program wherever the location of the png file isWhat should I do?

2 years ago

1 answers
17 views
0
Python NameError: name 'a' is not defined

currently a college student project.Python and recognition and object using the opencv.2개의 사진을 촬영후 두 객체인식 박스의 차 값을 갖고 싶어 배열로 선언 후 진행할까 했습니다.- Source code omitted - if len(body): for (x,y,w,h) in body:...

2 years ago

1 answers
46 views
0
Python SyntaxError: 'return' outside function

i2 = np.random.randint(3)j2 = np.random.randint(3)a1 = np.eye(3)[i2][j2]a2 = np.eye(3)[j2][i2]if (a1 == a2) : return Trueelse : return FalseIf i2 and j2 change positions through unspecified parts i2 a...

2 years ago

1 answers
46 views
0
Log in with Python. Button click error

import openpyxlfrom selenium import webdriverfrom bs4 import BeautifulSoupfrom selenium.webdriver.chrome.options import Optionswb = openpyxl.Workbook()chrome_options = Options()options = webdriver.Chr...

2 years ago

1 answers
26 views
0
Integer and sort in ascending order

import randomimport mathimport numpy as npimport xlwings as xw #***The average distance (dis)** after n times of simulation picking t times per personprint(How many products do you have?>> )q...

2 years ago

1 answers
18 views
0
unresolved reference error Error during programming of employee information entry, storage, modification, and deletion functions after logging in to Python

From Image if chk == True: while num != 6: printM() num = int(input(What do you want to select?)); if num > 6 and num < 1: continue switch(num, phoneNumber) **1. ↑ PhoneNumber encountered an e...

2 years ago

1 answers
18 views
0
Python Americano, cafe latte, green grape ade, and strawberry smoothie

How do you make a code that allows you to randomly assign one of Americano, cafe latte, green grape ade, or strawberry smoothie? By Python

2 years ago

1 answers
18 views
0
I have a question for Python

There are milk, water, coffee, ice, syrup, fruit 1, and fruit 2 in the options. How do you make a successful code with Python?

2 years ago

2 answers
74 views
0
Read Python csv file to group players into teams and save them in dictionaries

I am currently teaching myself dictionary and list. There's something I can't understand, so I'm uploading it.First of all, the csv file is written with open on Python and opened.import csvwith open(p...

2 years ago

1 answers
70 views
0
If the name is the same as Python csv phone number, add the member number and shipping number

If the phone number and name are the same, I would like to put the shipping number at the back of the member number and send it to a new csv file.Please give me some tips on what to do.

2 years ago
« - 436 - »

© 2024 OneMinuteCode. All rights reserved.