ABAP字符串操作 ABAP對字串的操作方法與其他語言的操作有較大差別,以下是較常用的對字串操作的方法: 1. 字串的連接:CONCATENATEDATA: t1 TYPE c LENGTH 10 VALUE 'We', t2 TYPE c LENGTH 10 VALUE 'have', t3 TYPE c LENGTH 10 VALUE 'all', t4 TYPE c LENGTH 10 VALUE 'the', t5 TYPE c LENGTH 10 VALUE 'time', t6…
Python字符串截取时总是有些糊涂,从官网上找到一个图示,理解Python字符串是如何标记,的具体含义图示如下: +---+---+---+---+---+---+ | P | y | t | h | o | n | +---+---+---+---+---+---+ 0 1 2 3 4 5 6 -6 -5 -4 -3 -2 -1 >>> word[:2] # character from the beginning to position 2 (excluded) 'Py' >…
1.去空格 strip() >>> s = 'a b c d ' >>> s.strip() 'a b c d' 2.lstrip() 方法用于截掉字符串左边的空格或指定字符 #!/usr/bin/python str = " this is string example!" print str.lstrip() str = "99999this is string example!888888" ') 以上实例输出结果如下: $…
菜鸟学Python第五天 流程控制 for循环 while循环 VS for循环: while循环:称之为条件循环,循环的次数取决于条件何时为false for循环:称之为迭代器循环,循环的次数取决于数据包含的成员个数 for循环专门用来取值,在循环取值方面比while循环强大,以后 遇到循环取值的场景,就应该用for循环 for循环对字典进行取值,取出的是字典的key. for + break for i in range(1,10): if i == 3: break 1 2 for + c…