w3resource

Python: Find the value of n where n degrees of number 2 are written sequentially in a line without spaces

Python Basic - 1: Exercise-19 with Solution

Write a Python program that finds the value of n when n degrees of number 2 are written sequentially on a line without spaces between them.

Pictorial Presentation:

Python: Find the value of n where n degrees of number 2 are written sequentially in a line without spaces

Sample Solution:

Python Code:

def ndegrees(num):
  ans = True
  n, tempn, i = 2, 2, 2
  while ans:
    if str(tempn) in num:
      i += 1
      tempn = pow(n, i)
    else:
      ans = False
  return i-1;
print(ndegrees("2481632"))
print(ndegrees("248163264"))

Sample Output:

5
6

Flowchart:

Flowchart: Python - Find the value of n where n degrees of number 2 are written sequentially in a line without spaces

Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a Python program to find the median among three given numbers
Next: Write a Python program to find the number of zeros at the end of a factorial of a given positive number.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.