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
137 views
0
AWS: I want to spin the Lambda function locally written in python.

Hello.The development environment is as follows.It happened when I tried to repair a function that had already been developed. The developer who wrote this function code was a Mac user ㅠ

2 years ago

1 answers
148 views
0
What if I want to see all the packages I installed with easy_install/pipe?

What if I want to see all the packages I installed with easy_install/pipe?(For Debian, use apt-get)

2 years ago

1 answers
124 views
0
How do I write from the back of the file?

I don't want to overwrite the file but I want to add it to the back, but I can't find a wayWho wants to teach me?

2 years ago

1 answers
66 views
0
(Full beginner) I can't read data when I'm crawling Python web.

import urllib.requestimport bs4url = https://sports.media.daum.net/sports/record/epl?tab=playerRankhtml = urllib.request.urlopen(url)bs_obj = bs4.BeautifulSoup(html, html.parser)div = bs_obj.find(div,...

2 years ago

1 answers
88 views
0
Unable to retrieve data while crawling python beautiful soup. Please tell me how to crawl a web page with JavaScript using selenium!

https://mensaar.de/#/menu/sbI want to get the menu data from the web page above and print it out, but it's not working well.The code I wrote is as follows.//#encoding = utf-8import urllib.requestfrom ...


1 answers
97 views
0
Which one should I use, if x is not None or if x is None?

I if not x is none thought a good representation to read more. google style guide in if x is not none , to write.Is it because of the speed difference between you two?Or is it because if not x is None...


1 answers
22 views
0
The basic data type used by Python to store the array is array?list?tuple?

Hello, I'm a newbie who started programming. I'm studying Python.As I study theory, there is a question that I am curious about the answer. It's very basic, but I don't have an answer sheetI can't fig...

2 years ago

1 answers
111 views
0
Python, for Repeat

patterns = [Scissors, Rock, Paper]for i in range (len(patterns)): print(patterns[i])Here's a question for the masters. ㅠ

2 years ago

1 answers
71 views
0
I want to delete the package with easy_install

It's easy to use easy_install from PythonYou can list what packages are installedThere is no uninstall function for the package.Find out what's installedOn Linuxrm /usr/local/lib/python2.6/dist-packag...


1 answers
20 views
0
Questions about coin toss program output

import randomcountH=0countT=0print(H T)for n in range (0,100): num = random.randint(0, 1) if num ==0: print (l) countH=countH+1 else: print( l) countT=countT+1print(countH, , countT)It's a very si...

2 years ago
« - 260 - »

© 2024 OneMinuteCode. All rights reserved.