# Lesson22:List(4)授業練習用 ###### tags: `Python` ## スライド練習1 :::info code: ```python= languages = ["Python", "c++", "Java"] print(languages) languages.extend(["PHP", "TTML"]) print(languages) ``` 結果:![](https://i.imgur.com/4P9Z0Ib.png) ::: ## スライド練習2 :::info code: ```python= languages = ["Python", "c++", "Java"] print(languages) languages.append("PHP") print(languages) languages = ["Python", "c++", "Java"] print(languages) languages.extend("PHP") print(languages) ``` 結果:![](https://i.imgur.com/rmPuC6l.png) ::: ## スライド練習3 :::info code: ```python= ``` 結果: ::: ## スライド練習4 :::info code: ```python= ``` 結果: ::: ## スライド練習5 :::info code: ```python= ``` 結果: ::: ## スライド練習6 :::info code: ```python= ``` 結果: ::: ## スライド練習7 :::info code: ```python= ``` 結果: ::: ## スライド練習8 :::info code: ```python= ``` 結果: ::: ## スライド練習9 :::info code: ```python= ``` 結果: ::: ## スライド練習10 :::info code: ```python= ``` 結果: :::