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
19 views
0
Python data is not loaded, so I'm asking you a question

import numpy as npimport pandas as pddata=[]f= open('ls_orchid.fasta.csv')running= Truewhile running: first_line = f.readline() if first_line == ' ' : break l=[first_line.strip()] s=' ' for line in f:...

2 years ago

1 answers
45 views
0
Error when working on dynamic pages in selenium.

I have to do repetitive work on the web page, so I'm trying to make it work automatically with selenium.The target web service seems to be a way to dynamically load html elements on the page. (I don't...

2 years ago

1 answers
18 views
0
Is there a way to install the tensor flow module on Python 32-bit?

I installed Python 32 on Windows 7 64 bit and use it It's compatible, so I'm going to install 32 bitsI'm using it, but I need TensorFlow, so while I was searching Google, it says that it only supports...

2 years ago

1 answers
115 views
0
Python built-in function pool

The built-in function called sum is used to add all the pressurized numbers to the list, and I want to know the detailed solution of this sum

2 years ago

1 answers
60 views
0
I have a question for Python Pandas (if you can use sql, please let me know)(Crying)

Let's say there's a data frame like thisHow do I extract more than one value from the column Alphabet?(c, d, e have only one value, so include X)

2 years ago

1 answers
53 views
0
I want to convert one string to another in the list that stores the string.

my_list = ['\nblue\nyellow\nred, \ngreen\nblack, \npink']I want to convert \n part to @ character like the result screen below.my_list = ['@blue@yellow@red, @green@black, @pink']

2 years ago

1 answers
18 views
0
Python repeat

Hello, I am currently working on a final project at the university. The program I made is a chemical food calculator. It's just that the program itself works well, but once it goes back, it ends, so I...

2 years ago

1 answers
22 views
0
Python Age Input Program To determine if the input number is an input number.

while True: a=input ('Enter your age:') if type(a)==str: print ('Please enter an age number') else: print('OK') breakI'm a beginner at Python. I've done this much, but I can't do it anymore. Haha.I...

2 years ago

1 answers
113 views
0
Generate n integers randomly for Python

X = []for x in range (n): X.appned(random.randint(-999,999))When I try to randomly generate n integers in Python, I try to use randint, but I made an error to randomly generate n integers, and I saw t...

2 years ago

1 answers
93 views
0
Can I change it to if or for statement instead of Python exception?

while True: try: driver.find_element_by_id('').click() break except: try: scroll() driver.find_element_by_id('').click() break except: scroll()I want to scroll until I find the...

« - 244 - »

© 2024 OneMinuteCode. All rights reserved.