You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: 100+ Python challenging programming exercises.txt
+139
Original file line number
Diff line number
Diff line change
@@ -1548,6 +1548,9 @@ Then, the output of the program should be:
1548
1548
1549
1549
In case of input data being supplied to the question, it should be assumed to be a console input.
1550
1550
1551
+
Hints:
1552
+
Use float() to convert an integer to a float
1553
+
1551
1554
Solution:
1552
1555
1553
1556
n=int(raw_input())
@@ -1579,6 +1582,9 @@ Then, the output of the program should be:
1579
1582
1580
1583
In case of input data being supplied to the question, it should be assumed to be a console input.
1581
1584
1585
+
Hints:
1586
+
We can define recursive function in Python.
1587
+
1582
1588
Solution:
1583
1589
1584
1590
def f(n):
@@ -1592,26 +1598,159 @@ print f(n)
1592
1598
1593
1599
#----------------------------------------#
1594
1600
1601
+
8
1602
+
1603
+
The Fibonacci Sequence is computed based on the following formula:
1595
1604
1596
1605
1606
+
f(n)=0 if n=0
1607
+
f(n)=1 if n=1
1608
+
f(n)=f(n-1)+f(n-2) if n>1
1609
+
1610
+
Please write a program to compute the value of f(n) with a given n input by console.
1611
+
1612
+
Example:
1613
+
If the following n is given as input to the program:
1614
+
1615
+
7
1616
+
1617
+
Then, the output of the program should be:
1618
+
1619
+
13
1620
+
1621
+
In case of input data being supplied to the question, it should be assumed to be a console input.
1622
+
1623
+
Hints:
1624
+
We can define recursive function in Python.
1625
+
1626
+
1627
+
Solution:
1628
+
1629
+
def f(n):
1630
+
if n == 0: return 0
1631
+
elif n == 1: return 1
1632
+
else: return f(n-1)+f(n-2)
1633
+
1634
+
n=int(raw_input())
1635
+
print f(n)
1597
1636
1598
1637
1599
1638
#----------------------------------------#
1600
1639
1640
+
#----------------------------------------#
1641
+
1642
+
8
1643
+
1644
+
The Fibonacci Sequence is computed based on the following formula:
1645
+
1646
+
1647
+
f(n)=0 if n=0
1648
+
f(n)=1 if n=1
1649
+
f(n)=f(n-1)+f(n-2) if n>1
1650
+
1651
+
Please write a program using list comprehension to print the Fibonacci Sequence in comma separated form with a given n input by console.
1652
+
1653
+
Example:
1654
+
If the following n is given as input to the program:
1655
+
1656
+
7
1657
+
1658
+
Then, the output of the program should be:
1659
+
1660
+
0,1,1,2,3,5,8,13
1661
+
1662
+
1663
+
Hints:
1664
+
We can define recursive function in Python.
1665
+
Use list comprehension to generate a list from an existing list.
1666
+
Use string.join() to join a list of strings.
1667
+
1668
+
In case of input data being supplied to the question, it should be assumed to be a console input.
1669
+
1670
+
Solution:
1601
1671
1672
+
def f(n):
1673
+
if n == 0: return 0
1674
+
elif n == 1: return 1
1675
+
else: return f(n-1)+f(n-2)
1602
1676
1677
+
n=int(raw_input())
1678
+
values = [str(f(x)) for x in range(0, n+1)]
1679
+
print ",".join(values)
1603
1680
1604
1681
1605
1682
#----------------------------------------#
1606
1683
1684
+
8
1685
+
1686
+
Please write a program using generator to print the even numbers between 0 and n in comma separated form while n is input by console.
1687
+
1688
+
Example:
1689
+
If the following n is given as input to the program:
1607
1690
1691
+
10
1608
1692
1693
+
Then, the output of the program should be:
1694
+
1695
+
0,2,4,6,8,10
1696
+
1697
+
Hints:
1698
+
Use yield to produce the next value in generator.
1699
+
1700
+
In case of input data being supplied to the question, it should be assumed to be a console input.
1701
+
1702
+
Solution:
1703
+
1704
+
def EvenGenerator(n):
1705
+
i=0
1706
+
while i<=n:
1707
+
if i%2==0:
1708
+
yield i
1709
+
i+=1
1710
+
1711
+
1712
+
n=int(raw_input())
1713
+
values = []
1714
+
for i in EvenGenerator(n):
1715
+
values.append(str(i))
1716
+
1717
+
print ",".join(values)
1609
1718
1610
1719
1611
1720
#----------------------------------------#
1612
1721
1613
1722
1723
+
8
1724
+
1725
+
Please write a program using generator to print the numbers which can be divisible by 5 and 7 between 0 and n in comma separated form while n is input by console.
1726
+
1727
+
Example:
1728
+
If the following n is given as input to the program:
1729
+
1730
+
100
1731
+
1732
+
Then, the output of the program should be:
1733
+
1734
+
0,35,70
1735
+
1736
+
Hints:
1737
+
Use yield to produce the next value in generator.
1738
+
1739
+
In case of input data being supplied to the question, it should be assumed to be a console input.
0 commit comments