diff --git a/NP/NP27.py b/NP/NP27.py new file mode 100644 index 0000000..923bd72 --- /dev/null +++ b/NP/NP27.py @@ -0,0 +1,18 @@ +#!/usr/bin/env python3 +# @author 轩辕龙儿 +# @date 2022/10/26 +# @file NP27.py + +def solution(): + name = ["Niumei", "YOLO", "Niu Ke Le", "Mona"] + friends = [] + friends.append(name) + food = ["pizza", "fish", "potato", "beef"] + friends.append(food) + number = [3, 6, 0, 3] + friends.append(number) + print(friends) + + +if __name__ == "__main__": + solution()