Go 实现Python中的语法
Posted Zcb0812
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Go 实现Python中的语法相关的知识,希望对你有一定的参考价值。
字符串相关:
go实现python字符串的 .strip() 简单实现:
package main import "fmt" func main() { s1 := " hello world 你好 世界 " for { if s1[0] != 32 && s1[len(s1)-1] !=32{ break } if s1[0] == 32{ s1 = s1[1:] } if s1[len(s1)-1] ==32{ s1 = s1[:len(s1) -1] } } fmt.Println(s1) }
以上是关于Go 实现Python中的语法的主要内容,如果未能解决你的问题,请参考以下文章