“Jak znaleźć 1 cyfrę w Python” Kod odpowiedzi

Jak znaleźć 1 cyfrę w 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

Python Digit String

import string

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

Odpowiedzi podobne do “Jak znaleźć 1 cyfrę w Python”

Pytania podobne do “Jak znaleźć 1 cyfrę w Python”

Więcej pokrewnych odpowiedzi na “Jak znaleźć 1 cyfrę w Python” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu