21
2020
03

Firefox driver for python selenium

https://stackoverflow.com/questions/26070834/how-to-fix-selenium-webdriverexception-the-browser-appears-to-have-exited-beforsudo apt-get install xvfbsudo pip install pyvirtualdisplay#!/usr/bin/env pythonfrom pyvirtualdisplay import Displayfrom seleni
14
2020
03

Python random number

import randomprint("Printing random float number with two decimal places is ", round(random.random(), 1))print("Random float number between 36.4 and 36.9 with two decimal places is ", round(random.uniform(36.4,36.9), 1))