Start the python Tour for Newbies

Start the python Tour for Newbies //Given a radius, find the area and circumference of a circle r = int(input('plz input a nunber:')) p = 2 * 3.14 * r s = 3.14 * r ** r print('The premeter of circle is %d'%p) print('The square of circle is %d'%s) #Print in ascending order from small to large after e ...

Posted by runthis on Sat, 27 Jul 2019 14:00:41 +0200

matplotlib for data visualization

A learning blog post from the matplotlib library.matplotlib is very important for data visualization, it fully encapsulates all the API s of MatLab, and it works best with Python's syntax in a python environment. I. Installation of Library and configuration of environment Under windows: py-3-m PIP install Matplotlib Under linux: python3-m PIP ...

Posted by seaweed on Thu, 06 Jun 2019 18:48:11 +0200

Use server to train and test YOLOv3

Server usage Remote Connection Use XShell to establish SSH connection with server, configure username and password Environment Configuration Create your own python environment and clone the base environment directly for convenience conda create --name yzh-env --clone base Switch to your environment and install jupyter n ...

Posted by EricC on Sun, 05 May 2019 10:40:03 +0200