Posts

Showing posts from October, 2020

How many cities are there in the Gpay Go India map

Hi Readers, Google pay is now up with an all new offer   Google Pay Go India – Visit All Cities Of India & Get ₹101 – ₹501 In Bank  In this  Diwali time Google Pay is giving us best offers of the year from last Two Years. Last Year we have seen different types offers collecting stamps, getting scratch cards and earning up to 2020 Rs. This time its the Go India Offer. This time y ou just need to Collect G Pay Go India Tickets and G Pay Go India Kilometer (KM) to collect the scratch Cards. there are 30 cities in the map Mumbai New Delhi  Bangalore  Hyderabad Ahmedabad  Chennai  Kolkata  Surat  Pune  Jaipur  Lucknow Kanpur Nagpur Indore  Bhopal Visakhapatnam  Patna  Ghaziabad  Ranchi  Raipur Chandigarh  Guwahati  Bhubaneswar Dehradun Thiruvananthapuram Pondicherry     Rewards: 1. ₹101-501 scratch will be given immediately on completing all the cities. 2. On every 5th city that you v...

New offer Google Pay Go India – Visit All Cities Of India & Get ₹101 – ₹501

Image
Hi Readers, Google pay is now up with an all new offer   Google Pay Go India – Visit All Cities Of India & Get ₹101 – ₹501 In Bank  In this  Diwali time Google Pay is giving us best offers of the year from last Two Years. Last Year we have seen different types offers collecting stamps, getting scratch cards and earning up to 2020 Rs. This time its the Go India Offer. This time y ou just need to Collect G Pay Go India Tickets and G Pay Go India Kilometer (KM) to collect the scratch Cards. How To Earn Google Pay Go India City Tickets ?: Earn the Go India Champion reward Visit all the cities in the  Go India game by 25 Nov 2020, 11:59 PM  to earn the Go India Champion reward worth 101-501. To visit a city in the game, collect both city tickets and kilometres (KM). The more you collect, the more cities you can visit. City tickets and KM are given out randomly. You could collect any of the cities or KM through the different actions. Tap the ticket or KM icon...

Snake Game Using turtle library

     How about lets use the same turtle library to make a simple game. Today we will be making the snake game using python. All that the game does is there will be the food placed at random co-ordinates and the snake will have to move using the keys 'W', 'A', 'S' and 'D' and every time it eats the length of the snake is increased . Game will be over when it hits itself or the border.  We need import turtle random and time module for this game. import turtle import time import random delay = 0.1 # Score score = 0 high_score = 0 # Set up the screen win = turtle.Screen() win.title("Snake Game--->Codeuniq") win.bgcolor("blue") win.setup(width=600, height=600) win.tracer(0) # Turns off the screen updates # Snake head head = turtle.Turtle() head.speed(0) head.shape("square") head.color("yellow") head.penup() head.goto(0,0) head.direction = "stop" # Snake food food = turtle.Turtle() food.speed(0) food.shape(...

Draw helix and cool patterns using turtle library python

Image
Today we will be using the  python turtle package  and draw simple patterns. Turtle is a really useful python package for beginners and programming kids. It is a drawing tool that can be used draw using simple codes. After importing turtle package , just give it the command turtle.forward(25), and it moves 15 pixels in the direction it is facing on the screen. What is Turtle Library? In computer graphics, turtle graphics are vector graphics using a relative cursor (the "turtle") upon a Cartesian plane. Turtle graphics is a key feature of the Logo programming language.It was part of the original Logo programming language developed by Wally Feurzig and Seymour Papert in 1966.The turtle module is an extended re-implementation of the same-named module from the Python standard distribution up to version Python 2.5. The turtle module provides turtle graphics primitives, in both object-oriented and procedure-oriented ways. Because it uses tkinter for the underlying graphics, it nee...