Định dạng theo vị trí

Regular Expressions in Python

Maria Eugenia Inzaugarat

Data scientist

Định dạng chuỗi là gì?

  • Nội suy chuỗi

  • Chèn chuỗi/biến vào văn bản có sẵn:

custom_string = "String formatting"
print(f"{custom_string} is a powerful technique")
String formatting is a powerful technique
  • Ứng dụng:
    • Tiêu đề biểu đồ
    • Hiển thị thông báo/lỗi
    • Truyền câu lệnh vào hàm
Regular Expressions in Python

Các cách định dạng

  • Định dạng theo vị trí
  • f-string
  • Phương thức template
Regular Expressions in Python

Định dạng theo vị trí

  • Placeholder được thay bằng giá trị

  • str.format()

 

print("Machine learning provides {} the ability to learn {}".format("systems", "automatically"))
Machine learning provides systems the ability to learn automatically
Regular Expressions in Python

Định dạng theo vị trí

  • Dùng biến cho cả chuỗi ban đầu và giá trị truyền vào phương thức
my_string = "{} rely on {} datasets"
method = "Supervised algorithms"
condition = "labeled"
print(my_string.format(method, condition))
Supervised algorithms rely on labeled datasets
Regular Expressions in Python

Đổi thứ tự giá trị

  • Chèn số chỉ mục vào placeholder để đổi thứ tự giá trị
print("{} has a friend called {} and a sister called {}".format("Betty", "Linda", "Daisy"))
Betty has a friend called Linda and a sister called Daisy

 

print("{2} has a friend called {0} and a sister called {1}".format("Betty", "Linda", "Daisy"))
Daisy has a friend called Betty and a sister called Linda
Regular Expressions in Python

Placeholder có tên

  • Đặt tên cho placeholder
tool="Unsupervised algorithms"
goal="patterns"
print("{title} try to find {aim} in the dataset".format(title=tool, aim=goal))
Unsupervised algorithms try to find patterns in the dataset
Regular Expressions in Python

Placeholder có tên

my_methods = {"tool": "Unsupervised algorithms", "goal": "patterns"}
print('{data[tool]} try to find {data[goal]} in the dataset'.format(data=my_methods))
Unsupervised algorithms try to find patterns in the dataset
Regular Expressions in Python

Bộ chỉ định định dạng

  • Chỉ định kiểu định dạng: {index:specifier}
print("Only {0:f}% of the {1} produced worldwide is {2}!".format(0.5155675, "data", "analyzed"))
Only 0.515568% of the data produced worldwide is analyzed!

 

print("Only {0:.2f}% of the {1} produced worldwide is {2}!".format(0.5155675, "data", "analyzed"))
Only 0.52% of the data produced worldwide is analyzed!
Regular Expressions in Python

Định dạng datetime

 

from datetime import datetime
print(datetime.now())
datetime.datetime(2019, 4, 11, 20, 19, 22, 58582)

 

print("Today's date is {:%Y-%m-%d %H:%M}".format(datetime.now()))
Today's date is 2019-04-11 20:20
Regular Expressions in Python

Ayo berlatih!

Regular Expressions in Python

Preparing Video For Download...