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
I ran Python beginner function, but nothing came out.

def compact(lst): return list(filter(None, lst))compact ([1,2,3,4,0,,False,None])I'm done, but nothing's coming out.

2 years ago

1 answers
43 views
0
Apply to factors as Python list

I want to turn over the two-dimensional list as a factor for the Python zip function, what should I do?Like the JavaScript application method.def myFunc(a1, a2, a3): do_something(...)myFunc.some_metho...

2 years ago

1 answers
78 views
0
While performing web crawling for data analysis, html is called up, but it is not called by the .select('table') method that I always used.

### Calling Pandas### Include in variable called page url to crawl webimport pandas as pd url = 'https://api.xangle.io/project/exchange/price?lang=ko&currency=krw&page=0&items_per_page=50'...


2 answers
53 views
0
Problem with if statement branching after Python input

a=input(What do you want to calculate? 1. Molar concentration 2. PPM concentration 3. Percent concentration)if a==1: b=input (What is the concentration of the solution you want to calculate?) c=in...

2 years ago

1 answers
19 views
0
Python beginner.else sub_count >= 2:Expected ":"

I'd appreciate it if you could explain it.!

2 years ago

1 answers
106 views
0
Why is it written in C language when Python Pycuda is developed? Is it impossible in other languages?

I am studying pycuda in Python. During the development of pycuda, it was written in C language within the kernel function like C language-based cudaIs it because the Nvidia graphics card works based o...

2 years ago

1 answers
15 views
0
Questions about executing Fibonacci sequence after implementing recursive functions

Python (code implemented using the Fibonacci sequence recursive function) def fib(n): if n ==1 or n==2: return 1 return fib(n-1)+fib(n-2)print(fib(6))If you execute the above code, the return value b...

2 years ago

1 answers
74 views
0
Check for non-overlapping values with Python tea sets.

Hi, everyone.I am a beginner among beginners who have only started studying Python by myself for about a month.I was making a program because I thought of oneEnter the values in the first and second t...

2 years ago

1 answers
16 views
0
I have a question for Python module AttributeError: module 'requests' has no attribute 'get'

I'm reading a book by myself and following along.We are currently in the process of importing images from the Internet as a request.I used the requests module and there was an error until installation...

2 years ago

1 answers
45 views
0
If I use Django hosting service, can I automatically crawl and register on the web page?

I'm a Python beginner who wants to start studying Django.I would like to crawl the web page once a day and update it to the web page made by Django.You don't have to use Django.Example) Crawling Naver...

2 years ago
« - 424 - »

© 2024 OneMinuteCode. All rights reserved.