Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

what is python used for

Python is a multipurpose language. Here are a few examples:
- Building softwares
- Talking to embedded electroncis
- Webscrapping
- Building websites
- Data science
- Artificial intelligence training
- Much more.
It is an easy to learn, easy to read, open-source development language.
Comment

for python

list1 = [1,'hello',2] #we've created a list
for element in list1:
  print(element) #we will print every element in list1
Comment

what is python used for

Python is a programming language with many use cases. It can be used for:
1) Web Apps (With frameworks like Flask and Django)
2) Data Science (With frameworks like PyTorch and NumPy)
3) Games (With modules like Pygame)
4) Machine Learning (With frameworks like TensorFlow and Keras)
5) Graphical User Interfaces (With modules like Kivy and Tkinter)
6) Web Scraping (With frameworks like Beautiful Soup and Requests)
7) Automation (With frameworks like Selenium and Openpyxl)
And much more.
Comment

for python

num = input("Pls Enter your Nikname (alphabetnumbric)</>:       ");
count=0
for n in num :
    if n>="0" and n<="9":
        count+=1
print ("number of digit in text :",count)
Comment

for python

races = ["golden retriever", "chihuahua", "terrier", "carlin"]
for dog in races:
    print(dog)
Comment

PREVIOUS NEXT
Code Example
Python :: erase % sign in row pandas 
Python :: case insensitive replace python 
Python :: python rgb colors 
Python :: How to get the value of an Entry widget in Tkinter? 
Python :: how to use print in python 
Python :: python selenium find by class name 
Python :: python program to count even and odd numbers in a list 
Python :: make binary tree in python 
Python :: pandas read first column as index 
Python :: python currency sign 
Python :: how to create empty series in pandas 
Python :: python 2d array to dataframe 
Python :: unzip_data python 
Python :: django order by 
Python :: print column in 2d numpy array 
Python :: numpy empty image 
Python :: own labels for ticks matplotlib 
Python :: block window if another window is open tkinter 
Python :: python abstract method 
Python :: python render_template 
Python :: python decimal to string 
Python :: python datetime day of year 
Python :: append a zeros column numpy 
Python :: create dictionary from input python 
Python :: linking custom CSS in flask 
Python :: Python Tkinter Canvas Widget 
Python :: python version 
Python :: clean punctuation from string python 
Python :: where are python libraries installed in windows 
Python :: python convert string datetime into datetime 
ADD CONTENT
Topic
Content
Source link
Name
7+4 =