# Enter a code
d = {
'Alice': [45],
'Bob': [60],
'Candy': [75],
}
L= ([50, 61, 66],[80, 61, 66],[88, 75, 90])
num = 0
for item in d:
d[item] = L[num]
i = num+1
print(d)
d = {
'Alice': [45],
'Bob': [60],
'Candy': [75],
}
L= ([50, 61, 66],[80, 61, 66],[88, 75, 90])
num = 0
for item in d:
d[item] = L[num]
i = num+1
print(d)
2025-07-24
d = {
'Alice': 45,
'Bob': 60,
'Candy': 75,
'David': 86,
'Ellena': 49
}
L = ('Alice', 'Bob', 'Candy', 'Mimi', 'David')
for item in L:
print('{}:{}'.format(item,d.get(item)))
'Alice': 45,
'Bob': 60,
'Candy': 75,
'David': 86,
'Ellena': 49
}
L = ('Alice', 'Bob', 'Candy', 'Mimi', 'David')
for item in L:
print('{}:{}'.format(item,d.get(item)))
2025-07-24
L = [[1, 2, 3], [5, 3, 2], [7, 3, 2]]
for item in L:
num = 1
for i in item:
num = i*num
print(num)
for item in L:
num = 1
for i in item:
num = i*num
print(num)
2025-07-22
L = ['Alice', 66, 'Bob', True, 'False', 100]
num = 1
for c in L:
if num % 2 == 0:
print(c)
num += 1
num = 1
for c in L:
if num % 2 == 0:
print(c)
num += 1
2025-07-22
age = 19
if age >= 18:
temp = 'adult {}'
print(temp.format(age))
if age >= 18:
temp = 'adult {}'
print(temp.format(age))
2025-07-21
# Enter a code
template = 'Life is {0}, {1} {2} {3}'
template1 = 'Life is {a},,{c} sgdggys'
print(template.format("short","you","need","python"))
aa='short'
bb = 'you'
cc = 'need'
dd = 'python'
print(template1.format(a=aa,b=bb,c=cc,d=dd))
template = 'Life is {0}, {1} {2} {3}'
template1 = 'Life is {a},,{c} sgdggys'
print(template.format("short","you","need","python"))
aa='short'
bb = 'you'
cc = 'need'
dd = 'python'
print(template1.format(a=aa,b=bb,c=cc,d=dd))
2025-07-21
print(r'''To be, or not to be: that is the question.Whether it's nobler in the mind to suffer.''')
2025-07-21
Python遍歷dict
通過直接print(d),我們打印出來的是完整的一個dict;有時候,我們需要把dict中m(滿足)一定條件的元素打印出來
通過直接print(d),我們打印出來的是完整的一個dict;有時候,我們需要把dict中m(滿足)一定條件的元素打印出來
2025-07-18