Python Online Compiler & Playground
HTML/CSS/JavaScript
HTML
CSS
Javascript
C++
C
PHP
Java
Python
Swift
C#
Ruby
Node.JS
Kotlin
jQuery
Go
R
TypeScript
Start Python Course
Register
First 780 exponential values of 2!
+29
Author: Unknown Decoder
Dark
Public
Save
PY
py
1
2
3
4
5
6
7
8
9
10
11
#First 780 exponential values of 2!
num =
2
exp =
1
print
(
"Please read till end \n \n"
)
for
i
in
range
(
780
):
print
(
"2^"
+
str
(
exp
)
+
" = "
+
str
(
num
))
num *=
2
print
()
exp +=
1
print
(
"\n \n \n \n Underground Parrot 🦜"
)
Enter to Rename, Shift+Enter to Preview
OUTPUT