Skip to content

HuynhTriNhan/Complete-Python-3-Bootcamp

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

69 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

  • 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!

Nội dung khóa học

Python Object and Data Structure Basic

  1. 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.
  1. 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
  1. Lists
  • Creating lists
  • Indexing and Slicing Lists
  • Basic List Methods( append(), pop(0) pop(), sort(), reverse() )
  • Nesting Lists
  • Introduction to List Comprehensions
  1. Dictionaries
  2. Tuple

Kiểu dữ liệu không thể thay đổi được

Python Statements

  • Conclusion: Guess Number Game

Methods and Functions

Random Methods

  1. Shufflle Methods in List

Funtions

About

Course Files for Complete Python 3 Bootcamp Course on Udemy

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 100.0%