ngày 07-08-2023
pip install notebook
jupyter notebook
print("Hello, World!")
a = 5b = 7print(a + b)
x = 5y = "Hello, World!"print(x)print(y)
x = 5print(x)x = "Python"print(x)
x = 10 # số nguyêny = 20.5 # sô thựcz = 1j # số phức (đại diện cho số phức i)
a = "hello"b = 'world'
a = Trueb = False
x = 10 # inty = 20.5 # floatprint(x + y) # Kết quả: 30.5
a = "hello"b = "world"print(a + " " + b) # Kết quả: "hello world"print(a * 3) # Kết quả: "hellohellohello"
a = [1, 2, 3, 4, 5]
b = (1, 2, 3, 4, 5)
c = {1, 2, 3, 4, 5}
d = {"name": "John", "age": 30}
a = [1, 2, 3, 4, 5]print(a[0]) # Kết quả: 1a[0] = 10print(a) # Kết quả: [10, 2, 3, 4, 5]a.append(6)print(a) # Kết quả: [10, 2, 3, 4, 5, 6]
d = {"name": "John", "age": 30}print(d["name"]) # Kết quả: "John"d["name"] = "Jane"print(d) # Kết quả: {'name': 'Jane', 'age': 30}
diem_hk1 = eval(input("Nhap diem HK1: "))diem_hk2 = eval(input("Nhap diem HK2: "))def tinh_diem_trung_binh(diem_hk1, diem_hk2):dtb = (diem_hk1 + diem_hk2 *2) /3print("Diem trung binh: ", dtb )returntinh_diem_trung_binh(diem_hk1, diem_hk2)
temperature = 20if temperature < 0:print("It's freezing!")elif 0 <= temperature < 20:print("It's cold.")else:print("It's warm.")
for i in [1, 2, 3, 4, 5]:print(i)
i = 1while i <= 5:print(i)i += 1
for i in range(1, 11):if i == 5:breakprint(i)
for i in range(1, 11):if i == 5:continueprint(i)
# Yêu cầu 1my_string = "Hello, Python!"print(my_string)# Yêu cầu 2my_int = 10my_float = 20.5print(my_int, my_float)# Yêu cầu 3my_list = [1, 2, 3, 4, 5]print(my_list[0], my_list[-1])# Yêu cầu 4my_list.append(6)print(my_list)# Yêu cầu 5my_bool = 5 > 3print(my_bool)# Yêu cầu 6for i in my_list:print(i)# Yêu cầu 7i = 1while i <= 5:print(i)i += 1# Yêu cầu 8for i in my_list:if i > 2:print(i)# Yêu cầu 9my_list_2 = ["cat", "window", "defenestrate", "Python", "a"]for word in my_list_2:if len(word) > 3:print(word)# Yêu cầu 10new_list = [x for x in my_list if x % 2 == 0]print(new_list)