Epython Lab
6.44K subscribers
661 photos
31 videos
104 files
1.22K links
Welcome to Epython Lab, where you can get resources to learn, one-on-one trainings on machine learning, business analytics, and Python, and solutions for business problems.

Buy ads: https://telega.io/c/epythonlab
Download Telegram
#Solution for #Assignment by @MINtaa911

You can forward your feedback via @pyDiscussion

#Guess the number
from random import randint
def guess_number():
num = randint(0,20)
guess = int(input("Enter your guess number: "))
while(num != guess):
if(guess > num):
print("Your guess is too high")
elif(guess < num):
print("your guess is too low")
else:
break
guess = int(input("Enter your guess number: "))

print("you win")

guess_number()

#LearnDataScience #LearnPython #StayHome #PreventCOVId19
Another #Solution for #Assignment by @Amalright

You can forward your feedback via @pyDiscussion

from random import*

Def fun_game(number_chosen):
data=randrange(0,20)
if(nuber_chosen> data):
print("too much")
elif(nuber_chosen < data):
print("too low")
else:
print("correct answer :")

J = 1
While(j !=0)
choice =int(input("Enter 1 to continue"))
if(choice ==1):
choice =int(input("Enter your try"))
fun_game(choice)
else:
j =0

#StayHome #PreventCOVId19 #LearnPython #LearnDataScience #LearnRandomNumber
Python is a programming language. Like other languages, it gives us a way to communicate ideas. In the case of a programming language, these ideas are “commands” that people use to communicate with a computer!

We convey our commands to the computer by writing them in a text file using a programming language. These files are called programs. Running a program means telling a computer to read the text file, translate it to the set of operations that it understands, and perform those actions.

#LearnPython #LearnDataAnalysis #StayHome #PreventCOVID19
Python can also perform mathematical exponentiation. In mathematics, you might see an exponent as a superscript number, but typing superscript numbers isn't always easy on modern keyboards. Since which is it?
Final Results
26%
^
4%
*
70%
**
Forwarded from Deleted Account
PIL_1.1.7.win_amd64_py2.7.exe
1 MB
site link here
The death rate of Somalia and Sudan is high when we compare others. Ethiopia is in good status. Almost 50% are recovered in #Djiboti
#QuarantineYourself #LearnDataScience
Python programming. Getting started in Python programming.pdf
5.3 MB
Python programming. Getting started in Python programming

@python4fds
Baba B. - Python Data Structures and Algorithms - 2017.pdf
11.1 MB
Python Data Structures and Algorithms

@python4fds
Jupyter Notebooks

Jupyter Notebooks are an extremely powerful tool for data analysis because they allow you to run python commands and see outputs within the structure of a notebook, which is helpful because in Data Analysis you are often running short commands to produce the data/visualizations you need for a certain investigation.

To know how to install Jupyter notebook, looking at the following short video

https://www.youtube.com/watch?v=5Yx6h7Mgiv0
Python Programming for Beginners. The Compl Begin Guide.pdf
1.2 MB
Python programming for beginners - 2018

@python4fds
Sometimes I share you some python books which may help you to study python. Because #PYTHON is the powerful tool for Data Science, Machine Learning, Artificial Intelligence, and also to develop desktop application, web application etc. Ask @pydiscussion
#Python is a multi-paradigm, dynamically typed, multipurpose programming language, designed to be quick (to learn, to use, and to understand), and to enforce a clean and uniform syntax. Please note that Python 2 is officially out of support as of January 1, 2020. Therefore automatically shift yourself from Python-2 to the latest and most improved version of python [python-3.x] .

#QuarantineYourself #LearnPython #LearnDataScience
👍1
Reading a File using Python

Computers use file systems to store and retrieve data. Each file is an individual container of related information. If you’ve ever saved a document, downloaded a song, or even sent an email you’ve created a file on some computer somewhere. Even script.py, the Python program you’re editing in the learning environment, is a file.
So, how do we interact with files using Python?
Let’s say we had a file called hello_python.txt with these contents:

Python is a powerful tool for Data Ananlysis. So, stay at home and learn python for future Data Science.

We could read that file like this:

script.py

with open('hello_python.txt') as python_file:
python_contents = python_file.read()
print(python_contents)

This
opens a file object called python_file and creates a new indented block where you can read the contents of the opened file. We then read the contents of the file python_file using python_file.read() and save the resulting string into the variable python_contents. Then we print python_contents, which outputs the statement written in the above!.

#QuarantineYourself #LearnPython #LearnDataScience