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
42 views
0
Python pd.read_csv Execution Error

import pandas as pdfec = pd.read_csv('‪‪‪D:/Moon Hyun Jae/P00000001-ALL.csv')This error appears when you do so.FileNotFoundError: File b'\xe2\x80\xaa\xe2\x80\xaa\xe2\x80\xaaD:/Moon Hyun Jae/P00000001-...

2 years ago

1 answers
29 views
0
[Python] To search for specific characters in a string

infile=open(python_07_05.txt,'w')words=input()word=input()if word in words: infile.write(find word :+word)infile.close()outfile=open(python_07_05.txt,'r')text=outfile.read()print(text)outfile.close()I...

2 years ago

1 answers
127 views
0
Remove from Python Dictionary

w_count={}lists=[Night, Smile, Joke, Dawn, Dawn, Crying, Smile]for i in lists: try: w_count[i]+=1 except: w_count[i]=1for i in w_count: if w_count.get(i)==1: w_count=w_count.pop(i)print (w_count)Disp...

2 years ago

1 answers
80 views
0
Collect Python Scraping Destination Links

If you access URL1 of the code below, there is a page at the bottom.The last page of URL 1 is from 1 to 93 pagesI'd like to collect the links provided within the page.URL1: https://www.jobplanet.co.kr...


1 answers
100 views
0
Error creating python tkinter radio button after saving

import tkinter as tkdef func1(): label.config(text = 'Button 1')def func2(): label.config(text = 'Button 2')sel = tk.IntVar()sel.set(1)label = tk.Label(root, text = 'Select Button')label.pack()rb1 = t...

2 years ago

1 answers
51 views
0
Location of Global Constant to use in Django project

Hi, everyone.Django Wan! I'm a newbie.I'm asking you this question because I'm wondering where to define the constants to be used throughout the project while learning Django.If it's my coding style, ...

2 years ago

1 answers
17 views
0
How to distribute Python to an executable

I am using version 3.6 but cx_freeze and pyinstaller are not eating it all.Cx_freeze is syntaxError, but you can't do # -*- codingI don't have a clue what to do with the deployment file, what do you d...

2 years ago

1 answers
15 views
0
Python list IndexError (easy)

ho =[]for i in range(1,5) : for j in range(1,4) : ho[i][j] = (i*100 + j)for i in range(1,5) : for j in range(1,4) : if ho[1][1] or ho[3][1] or ho[2][3] or ho[4][4] : continue else : print(bottled...

2 years ago

1 answers
114 views
0
I have a question about data range using Python Pandas module.

In the Seoul Metropolitan Government's public data, we wanted to analyze how the number of students per teacher changes in time series by district.http://data.seoul.go.kr/openinf/linkview.jsp?infId=OA...

2 years ago

1 answers
141 views
0
I want to make the completed program an executor exe.

I completed the program using Selenium's chrome driver, and I want to make it available or available to other users as an launcher. After googling, it was successful to compile into a module called py...

2 years ago
« - 231 - »

© 2024 OneMinuteCode. All rights reserved.