Welecome to Python Portfolio of Rajesh!

1. Drawing Circle with squares

Using turtle library

Click here to see the code.

Screenshot of the program output -> circleWithSquares.png

2. Drawing Flower using Rhombus

Using turtle library

View Code

Screenshot -> flower.jpg

3. Find Monthly Pay

Using approximation algorithm calculating how much one has to pay each month given initial loan amount and annual compound interest rate to pay off complete amount in 1 year.

Here is the code for this program.

4. Guess the Number by Computer

In this game computer asks us to select any secret number in mind between 1 to 100. Computer is allowed only 7 guesses and yet it always wins. Player has to type 'h', 'l' or 'c' according to the guessed value is high, low or correct.

Code of the program.

Here is the screen shot of program when I choose 21 as my secret number ->

guessNumberComputer.png

5. Guess the Number by Human

This is a complementary version of the above game where computer chooses a secret number and human player has to guess. If range is 0-100 then 7 guesses allowed whereas 10 guesses allowed for range 0-1000. This program uses simplegui library. You can run this program at http://www.codeskulptor.org/.

Here is the code.

Screenshot of the program when computer chooses 64 secret number -> guessNumberHuman.png

6. Hangman game (Text Version)

This is a classic game of guessing word letter by letter within some finite chances.

Here is the code.

Screenshot of the game -> Hangman.png

7. Longest Alphabetical Sequence

This program takes input as any one string and finds longest alphabetical sequence.

Here is the code.

8. Movie Trailers Showcase

This program creates a webpage showcasing my favorite movie trailers in a browser.

Here is the code.

Screenshot of the webpage generated when program is executed-> Movies.png

9. Classic Arcade Pong game

This is the classic arcade game Pong. This game can be played here http://www.codeskulptor.org/#user40_DWG0hswoqwI7kJQ.py.

Here is the code.

Screenshot of the game-> pong.png

10. Profanity Editor

Given any text file this program checks whether there are any curse words in the file or not. If any curse word is found then program returns the alert message.

Code can be found here.

11. Rock-paper-scissors-lizard-Spock game

This is the Big Bang Theory version of the Rock-Paper-Scissors game.

Here is the code.

Screenshot of the program-> rpsls.png

12. Send text to any cellphone

This python program sends the text to cellphone. It used TwilioRestClient library for sending the message. You have to have account on the twilio for the program to work.

Code for the program.

13. Stopwatch: The Game

In this game you will find digital watch where you have to click stop button exactly when second is complete. It used simplegui library.

Here is the code.

Screenshot of the game while playing-> stopwatch.png

14. Word Game

This game is a lot like Scrabble or Words With Friends, if you've played those. Letters are dealt to players, who then construct one or more words out of their letters. Each valid word receives a score, based on the length of the word and the letters in that word.

Here is the code.

Screenshot of the game while playing-> wordGame.png

15. Edx Exam Programs

16. Memory Game

Memory is a card game in which the player deals out a set of cards face down. In Memory, a turn (or a move) consists of the player flipping over two cards. If they match, the player leaves them face up. If they don't match, the player flips the cards back face down. The goal of Memory is to end up with all of the cards flipped face up in the minimum number of turns. A Memory deck consists of eight pairs of matching cards. This program uses simplegui library. You can run this program at http://www.codeskulptor.org/.

Here is the code.

Screenshot of the game at start-> memoryStart.png

In the middle while playing-> memoryMid.png

After finishing a game-> memoryEnd.png

17. Caesar Cipher - Cryptography

In this problem, we will use a variant of the standard Caesar cipher where we will treat upper and lower case letters separately, so upper case letters will always be mapped to upper case letters, and lower case letters will always be mapped to lower case letters. Thus, if "a" maps to "c", "A" will map to "C". Characters such as the space character, commas, periods, exclamation points, etc will not be encrypted by this cipher - basically, all the characters within string.punctuation, plus the space (' ') and all numerical characters (0 - 9).

Here is the code.

Screenshot of the program in action-> cryptography.png

18. BlackJack Game

Blackjack is a simple, popular card game that is played in many casinos. Cards in Blackjack have the following values: an ace may be valued as either 1 or 11 (player's choice), face cards (kings, queens and jacks) are valued at 10 and the value of the remaining cards corresponds to their number. During a round of Blackjack, the players plays against a dealer with the goal of building a hand (a collection of cards) whose cards have a total value that is higher than the value of the dealer's hand, but not over 21. (A round of Blackjack is also sometimes referred to as a hand.)

Here is the code.

Screenshot of the program in action-> BlackJack

19. Asteroids Game

This is the updated version of Asteroids game which is an arcade space shooter released in November 1979 by Atari, Inc. The player controls a spaceship in an asteroid field which is periodically traversed by flying saucers. The object of the game is to shoot and destroy asteroids and saucers while not colliding with either or being hit by the saucers' counter-fire. The game becomes harder as the number of asteroids increases. For this game we don't have flying saucers. This program uses simplegui library to implement GUI.

Here is the code.

Screenshot of game's home screen-> Asteroid Home Screen

Screeshot of the game in action-> Asteroid game in action

20. RSS News Feed for Google and Yahoo

Many websites have content that is updated on an unpredictable schedule. News sites, such as Google News, are a good example of this. One tedious way to keep track of this changing content is to load the website up in your browser, and periodically hit the refresh button. Fortunately, this process can be streamlined and automated by connecting to the website's RSS feed, using an RSS feed reader instead of a web browser (e.g. Sage). An RSS reader will periodically collect and draw your attention to updated content.

Code can be found here.

Screen shot of the newsfeed-> RSS News Feed

21. Unique Values from Dictionary

You are given a dictionary aDict that maps integer keys to integer values. Write a Python function that returns a list of keys in aDict that map to dictionary values that appear exactly once in aDict.

Solution code can be found here.

22. Family Tree

Consider a following tree->

Family Tree Graphics

Suppose two people, P1 and P2, are i'th cousins. Let C1 be a child of P1 and C2 be a child of P2. Then, C1 is an i'th cousin of P2, 1 removed, and C2 is an i'th cousin of P1, 1 removed. Let G1 now be a child of C1. G1 is an i'th cousin of P2, 2 removed. In general, the type of cousin (what 'i' is) is the shorter distance to the ancestor of two people, and the amount removed is the difference between the distance to the common ancestor.

Class Member is a class that represents a single person in the family, and Class Family represents the whole family tree.

You are to write code for the method cousin of the class Family according to the docstring in FamilyTree.py and the definitions for degree removed and cousin type.

Here is the solution code.

Snapshot of the program output-> Family Tree

23. Blog with MongoDB database

I developed this blog step-by-step while completing MongoDB Course on MongoDB University. My part was to write statements to interact with MongoDB. Rest of the part was given as template. This is just a simple blog; nothing fancy!

You need MongoDB installed and server running to run this application. 'blog.py' is the main file. Restore the database+collection using json file provided in the directory.

You can find the code here.

Here is the screenshot of the blog with dummy user Ashwin logged in to home page->

Blog

24. Web Server in Flask - Restaurants and Menus

I developed this web server application while completing Full Stack Foundations course on Udacity. On homepage I display restaurant list and CRUD functionality for each. You can also view menus for each restaurant by clicking on View Menu link. Menu page consists of description, price & course type of each menu. I have also added API endpoints to retrieve Restaurants and Menu data in JSON format.

You can find the code here.

Here is the screenshot of the home page-> Restaurant home page

Here is Menu page for 'Thyme for That Vegetarian Cuisine' restaurant-> Restaurant Menus

JSON Endpoint reply for menus of a restaurant-> Menu in JSON forrmat

25. Design Patterns with Python

1. Creational Patterns

  1. Factory Method [View Code]
  2. Abstract Factory [View Code]
  3. Singleton [View Code]
  4. Builder [View Code]
  5. Prototype [View Code]

2. Structural Patterns

  1. Decorator [View Code]
  2. Proxy [View Code]
  3. Adapter [View Code]
  4. Composite [View Code]
  5. Bridge [View Code]

3. Behavioral Patterns

  1. Observer [View Code]
  2. Visitor [View Code]
  3. Iterator [View Code]
  4. Strategy [View Code]
  5. Chain of Responsibility [View Code]