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
18 views
0
To output alphabetical vowels and consonant counts in python

I want to input a word into python and print out the vowels (a,e,i,o,u) and the number of consonants in that word, respectively, what should I do?Enter one word : temporaryI want to do it like this

2 years ago

1 answers
94 views
0
##I have a Python question. Regarding join/merge,

You also want to implement code that runs on ##SQL in Python.Code Running in SQL)Python Code Error)Question) In Python, you want to attach two different tables to each other, but the two columns have ...

2 years ago

1 answers
15 views
0
I'd like to read the data on Python and use HTML and send an email.

Hello.I'm an engineer who just started Python. It's an easy question because I'm a beginnerI don't understand, so I'm uploading it here.First of all, the logic is like this.It's this simple logic, whe...

2 years ago

1 answers
14 views
0
Python Dictionary

/ For search, you can search if the starting word is the same even if you type only one titleFor example, when the title of the book is Python was the easiest, the search word is Python,Search for wor...

2 years ago

1 answers
106 views
0
I have a question about RGB color change related to Python 3 image!

Hello, I just studied Python.I looked up a lot of image RGB changes on Python with Google. You usually use PIL or WAND. I don't know how to change itLeave a question!What should I use on Python 3?In t...

2 years ago

1 answers
14 views
0
Python Quiz Program Code Question! Please!

Let's make a quiz program that matches Korean words in English if you give them a questionList example)kor = [Lion, Tiger, Rabbit]eng =['lion','tiger','rabbit']Please give me the code to make a quiz s...

2 years ago

1 answers
13 views
0
Please help me sort the date time dictionary in the Python list

date_list = [{date:2019-05-12},{date:2019-05-10}, {date:2019-05-14},{date:2019-05-20}, {date:2019-03-12},{date:2019-08-12}]In this way, how can we sort by date when the date-time dictionaries in t...

2 years ago

1 answers
12 views
0
I'm thinking about how to check my personal information among unmanned applications.

It's humble, but alone... We are making hospital unmanned reception software using Python.The UI is made by looking at Google and linking it with db, but suddenly it is unmanned, but it is self-confir...

2 years ago

1 answers
109 views
0
Is there a way to remove duplicate elements from the list?

We are working on a function that returns a new list that removes duplicate elements from the list.The chords I made didn't work out wellI actually don't know how to start.def remove_duplicates(): t =...

2 years ago

5 answers
125 views
0
Code that automatically downloads a CSV file with download links (URLs) recorded from Python

There is currently a CSV file with download links recorded as URLsI want to write a code that reads the URLs in the file and automatically downloads them in the folder.I don't know how to do it here, ...

2 years ago
« - 294 - »

© 2024 OneMinuteCode. All rights reserved.