- Complete-Python-3-Bootcamp Course Files for Complete Python 3 Bootcamp Course on Udemy
Copyright(©) by Pierian Data Inc.
Get it now for 95% off with the link: https://www.udemy.com/complete-python-bootcamp/?couponCode=COMPLETE_GITHUB
Thanks!
- Numbers
- Các phép toàn: cộng trừ nhân chia, mũ, modullo. dùng hàm nào để biết kiểu dữ liệu?
- Luật đặt tên biến.
- kiểu dữ liệu: int, float, str, list, dis, tuple, set, bool.
- Strings
- Creating Strings
- Printing Strings - Có thay đổi được phần tử của string hay không?
- String Indexing and Slicing (s[:-1], s[::2], s[::-1])
- String Properties( upper(), lower(), split())
- String Methods
- split()
- Print Formatting
a = 3.1456765
print(f"The {2} {1} {0} named is : {a:{10}.{6}}". format('fork', 'brown', 'quick'))
print("The {2} {1} {0} named is : ". format('fork', 'brown', 'quick') + f"{0:10.4f}".format(a))
# tại sao ra 2 kết quả khác nhau- Lists
- Creating lists
- Indexing and Slicing Lists
- Basic List Methods( append(), pop(0) pop(), sort(), reverse() )
- Nesting Lists
- Introduction to List Comprehensions
- Dictionaries
- Tuple
Kiểu dữ liệu không thể thay đổi được
- Conclusion: Guess Number Game
- Shufflle Methods in List