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
68 views
0
I want to convert multiple jpeg files into one pdf file

I wanted to specify a folder containing multiple jpeg files and convert it to one pdf file, so I wrote the following code in Python, but only one jpeg file in the folder was converted to pdf.I'd appre...

2 years ago

1 answers
54 views
0
Please tell me more about placeholder and session deprecated in tensorflow 2.0

I didn't understand the functions of placeholder and session even though I looked at various sites, so I don't know how to write the code directly in tensorflow 2.0.I would like you to tell me not onl...

2 years ago

1 answers
108 views
0
Python fails with optional installation of PYTHON_CONFIGURE_OPTS=" -- enable-framework" pyenv install in pyenv

When I try to install Python 3.6.5 with the option PYTHON_CONFIGURE_OPTS= --enable-framework pyenv install on macOS 10.13 High Sierra, I get a log with BUILD FAILED (OS X 10.13.6 using python-build 20...

2 years ago

1 answers
61 views
0
Is there a way to get all the user id retweeted for a particular tweet using tweet?

Nice to meet you.Currently, I am thinking of using python's tweet (3.9.0) for data analysis.So I have a question.As stated in the title, I would like to know how to get all the user id retweeted for a...

2 years ago

1 answers
68 views
0
I want to store the data extracted from the list in sqlite3 (database)

■ Data after extraction: Variable name: name['nameA', 'nameB', 'nameC', 'nameD'] ■ sqlite3:table name:userheader:name■ After storing sqlite3namenameAnameBnameCnameDI want to store it as above.I tried ...

2 years ago

2 answers
82 views
0
If you load more than once with irb, it will fail.

If you load ruby's code more than once on ruby's irb, it will fail.Why is that?Python is import mymoduleimport import libimportlib.reload(mymodule)# Changes take effectThis will reflect changes to the...

2 years ago

2 answers
99 views
0
I'd like to make commercial software on Python.

Hello,I would like to make commercial software with Python 2.7. Please let me know the following.①Do I have to disclose all the source code?②Is it impossible to compile without decompiling?③I use seve...

2 years ago

1 answers
53 views
0
I want to get information about the selected data using the box select function of the bokeh.

How do I retrieve information about the selected data using the box select function in the bokeh? from bokeh.layouts import gridplotfrom bokeh.io import output_notebook, showfrom bokeh.plotting import...

2 years ago

2 answers
18 views
0
About the order in which Python folders are written

I would like to ask you about the order in which Python folders are written.If you run the following sample, you will see importosdef asxmake(srcDir): for subinos.listdir(srcDir): newSrcPath=os.path....

2 years ago

3 answers
76 views
0
Error while scraping in python.

I'm scraping Python below.Traceback (most recent call last): File link_network.py, line 81, in<module> G=make_network(args.url,urls) File link_network.py, line 33, in make_network article_name =...

« - 161 - »

© 2024 OneMinuteCode. All rights reserved.