index
:
clp
main
A small Python compiler with optimizer written in Java
dcariotti
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
progs
/
a842.py
blob: 6759e3e805bf0356f85cf85179b7b8cf9073523c (
plain
)
1
2
3
4
def
first_Digit
(
n
)
:
while
n
>=
10
:
n
=
n
/
10
;
return
int
(
n
)