Skip to main content

Posts

Showing posts from March, 2015

How to see Your YouTube earning in country specific currency.

YouTube is improving day by to care about its users as well as channel creators.If you are YouTube channel owner then you may probably noticed that your earning will shown in USD $ only.And When you'll get paid your earning will converted in to your country specific currency.But now YouTube allow user to see their earning in country specific. Currently following countries currencies are allowed.      USD – US Dollar     EUR – Euro     GBP – British Pound Sterling     JPY – Japanese Yen     CHF – Swiss Franc     AED – United Arab Emirates Dirham     ANG – Netherlands Antillean Guilder     ARS – Argentine Peso     AUD – Australian Dollar     BDT – Bangladeshi Taka     BGN – Bulgarian Lev     BHD – Bahraini Dinar     BND – Brunei Dollar     BOB – Bolivian Boliviano     BRL – Brazilian Real     BWP – Botswanan Pula     CAD – Canadian Dollar     CHF – Swiss Franc     CLP – Chilean Peso     CNY – Chinese Yuan     COP – Colombian Peso     CRC – Costa Rican Col

How to Solve The Towers Of Hanoi in Python | Recursive programming

The tower of Hanoi is most popular and very interesting puzzle.Let me explain the puzzle first, there are three towers given let say X , Y , and Z. and No. of Discs are placed on that tower in descending order(Large Disc to Small) let say 3 Disc.Now in idle condition all disc are placed in Tower A with Descending order.Now your task is to place that Discs in to last tower Z as Descending order. But The rules ,Which we have to take into account before moving a Discs Are: (1) Only one disc may be moved at a time. (2) Only top disc on any Peg may be moved to any other Peg. (3) A larger disc can not be placed on a smaller one. Source Python Program to Solve The Tower of Hanoi : This is the Example of Recursive programming in python with Function calling. n = int(raw_input("Enter no of Disc to solve Tower\n >")) def hanoi_tower(peg1, peg2, peg3, n): if n <= 0: print "Dont be over smart" return if n == 1: print