在python中将2位数字拆分为10位和1位数

时间:2014-01-19 15:14:29

标签: python split modulo

我正在编写一个程序,用户必须在0到100之间输入一个数字。然后程序应该将数字分成10和1。因此,如果用户输入23,程序将返回2和3.如果用户输入4,程序将返回0和4.这是我的数字小于10,但我不知道如何处理2使用模运算符的数字。

def split():
    number = int(raw_input("Enter a number between 0 and 100:"))
    if number <10:
        tens = 0
        ones = number
        total = tens + ones
        print "Tens:", tens
        print "Ones:", ones
        print "Sum of", tens, "and", ones, "is", total

split()

谢谢!

1 个答案:

答案 0 :(得分:8)

使用divmod功能。

>>> a, b = divmod(23, 10)
>>> a, b
(2, 3)
>>> print "Tens: %d\nOnes: %d" % divmod(23, 10)
Tens: 2
Ones: 3

不知道divmodhelp是你的朋友!

>>> help(divmod)
Help on built-in function divmod in module __builtin__:

divmod(...)
    divmod(x, y) -> (quotient, remainder)

    Return the tuple ((x-x%y)/y, x%y).  Invariant: div*y + mod == x.