- 1 >>> and、as、assert、break、class、continue、
- 2
- 3 >>> def、del、elif、else、except、exec、finally、
- 4
- 5 >>> for、from、global、if、import、in、is、lambda
- 6
- 7 >>> not、or、pass、print、raise、return、try、while、with、yield
- 1 >>> a = "天海"
- 2 >>> b = "翼"
- 3 >>> print(a + b)
- 4 >>> 天海翼