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
84 views
0
I want to search all the subfolder files and make them into files, but the print and append values are different.

I'm going to create a project where I search all the subfolder files and make them into filesThe value comes out well if you print it, but when I added it to the list by append and returned the list, ...

2 years ago

1 answers
16 views
0
After the Python drop function, the object type changes to nonetype.

train = train.drop(['PassengerId', 'Name', 'Ticket'], axis=1, inplace=True)If you type (train) before and after this function,It's changed from DataFrame to NoneType.How do I do this? I don't know any...

2 years ago




3 answers
15 views
0
Python Beginner: Number Pyramid Problem

n = int(input())a=list(range(0,10))for i in range(1,n+1): for j in range(i): print(a[j]+i, end='') print()It works well when you put in 2, but if you put in 3, 345 comes out instead of 456.

2 years ago

1 answers
15 views
0
Python Question

Foo class only Each print(Foo.bar)print(Foo().bar)print(Foo.Bar.bar)print(Foo.Bar().bar)inA, B, C, D should be output.I don't know where to start.Even if I put the print function in the bar and bar fu...

2 years ago

2 answers
82 views
0
Can I turn Java to VSCODE? What is your favorite program and what language do you use as your main focus?

I went to an academy recentlyI'm learning Python and Java.They both use a program called Spider, Eclipse.I like VSCODE because it's much more comfortable and UX is cleanIt seems that good academies us...

2 years ago

1 answers
48 views
0
Questions related to finding hidden data in Python data frames.

import pandas as pdimport requestsfrom bs4 import BeautifulSoupfrom datetime import datetime# Code Settingscode = '005930'# Calculating risk-free interest rateske_url = https://www.kisrating.com/ratin...

2 years ago

1 answers
50 views
0
m1 MacBook) Contact Python, tensorflow installation version to PiCham

At first, I installed 3.7 additionally because I had to use python 3.9 and tensorflow. (Python 3.9 does not support tensorflow.)Process completed with exit code 132 (interrupted by signal 4: SIGILL) T...

2 years ago
« - 401 - »

© 2024 OneMinuteCode. All rights reserved.