Answers for "how to find 1 st digit in python"

1

how to find 1 st digit in python

# Python Program to get the first digit of number

# take input
num = int(input('Enter any Number: '))

# convert int to string
num_str = str(num)

# get the first digit
first_digit = num_str[0]

# printing first digit of number
print('The first digit of number:', first_digit)
Posted by: Guest on October-09-2021
0

python digit string

import string

print(string.digits)
>> "0123456789"
Posted by: Guest on December-31-2020

Code answers related to "how to find 1 st digit in python"

Python Answers by Framework

Browse Popular Code Answers by Language