Posts

Showing posts from February, 2018

(Python)Arithmetic operators example

a = int(input("Enter first number: ")) b = int(input("Enter second number: ")) c=a+b //Addition d=a-b //Subtraction e=a*b //Multiplication f=a/b //Division g=a%b //Modulus h=a**b //exponential print(c) print(d) print(e) print(f) print(g) print(h)

(LINUX)HOW TO INSTALL QBITTORENT IN UBUNTU?

Image
Use ppa launcher for this,and try the code in following sequence: sudo add-apt-repository ppa:qbittorrent-team/qbittorrent-stable sudo apt-get update sudo apt-get install qbittorrent It will be installed.Enjoy  Advertisements