“Как найти 1 ST Digit в Python” Ответ

Как найти 1 ST Digit в 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)
Disgusted Dunlin

Питона цифровой строки

import string

print(string.digits)
>> "0123456789"
Open Ocelot

Ответы похожие на “Как найти 1 ST Digit в Python”

Вопросы похожие на “Как найти 1 ST Digit в Python”

Больше похожих ответов на “Как найти 1 ST Digit в Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования