前几天面试遇到这个问题:在Java中如何将字符串转化为整数,当时too young too naive,随便回答了一下.今天跑去看Java源码中paresInt函数的写法,Oh my god!其实不看也能写出来,但是我觉得源码中的实现更好.下面贴出源码顺道分析一下: /* @param s the {@code String} containing the integer * representation to be parsed * @param radix the radix to be u…
使用内建函数raw_input()内建函数,它读取标准输入,并将读取到的数据赋值给指定的变量.我们可以使用int()内建函数将用户输入的字符串转换为整数: >>> user = raw_input("Enter login name:") Enter login name: root >>> print "Your Login is:", user Your Login is: root 上面这个例子只能用于文本输入,下面输入一…
1.1 python字符串定义 #!/usr/bin/python # -*- coding: utf8 -*- # 定义一个字符串 s1 = 'this is long String that spans two lines' # 表示下面一行是上一行的延续 s2 = 'this is long String\ that spans two lines' #原样输出字符串 s3 = """this is long String that spans two lines &q…