Skip to main content

Posts

Showing posts from August, 2019

Cloud Computing | Cloud Security

What is Cloud Computing? Cloud computing is the on-demand availability of computer system resources, especially data storage and computing power, without direct active management by the user. The term is generally used to describe data centers available to many users over the Internet. Fig 1-1 Cloud Computing http://ganeshjondhalekar.blogspot.com

Wikipedia Search software using python.

Project Name:- Wikipedia Search software using python. Dependencies:-                      1) Install Tkinter- Link- https://www.techinfected.net/2015/09/how-to-install-and-use-tkinter-in-ubuntu-debian-linux-mint.html                     2) Install wikipedia-                    for python3- pip3 install wikipedia                    for python2- pip install wikipedia ****************************************//**************************************** from tkinter import * import wikipedia def search_me(): result=entry.get( 1.0 ,END) text.delete( 1.0 ,END) try : answer=wikipedia.summary(r...

Snake game using python pygame.

Project Name:- Snake Game using python pygame. Dependencies:-                             1)Install pygame- link- https://askubuntu.com/questions/399824/how-to-install-pygame                              2)Install random-                    python3- pip3 install random                    python2- pip install random ****************************************//***************************************************** import pygame import random pygame.init() game_window = pygame.display.set_mode(( 900 , 900 )) pygame.display.set_c...

Calculator program using python tkinter

Project Name:- Simple Calculator Software using Python Tkinter. Dependencies:-                           1)Install  Tkinter- https://www.techinfected.net/2015/09/how-to-install-and-use-tkinter-in-ubuntu-debian-linux-mint.html                                 2)Install Math Library- for python3- pip3 install math  for python2- pip install math  ******************************************//************************************************************************ from tkinter import * from math import * class cal: def press( self ,n): self .text.insert(INSERT,n) def dl( self ): self .text.delete( 1.0 , 2.0 ) def equal( self ): self .exp= self .text.get( 1.0 ,END) try : self .result= eval ( self .exp) self .text.delete( 1.0 , 2.0 ) ...