update requirements.txt

This commit is contained in:
liligeng111 2025-08-06 02:58:03 +08:00
parent 84828ac02f
commit cc7727640c
2 changed files with 3 additions and 2 deletions

View file

@ -2,8 +2,8 @@
list_a = [0]
list_a += ['Hello'] * 5
list_a += [4, 5] * 3
# 输出[0, 'Hello', 'Hello', 'Hello', 'Hello', 'Hello', 4, 5, 4, 5, 4, 5]
print(list_a)