1.2.13. 临时¶
!pip install -U llama-index
! 表示后面跟随的不是 Python 代码,而是 shell 命令
query = f""" select * from student_info """
f-string 是一种格式化字符串的表达式
以 f 开头,其后跟要格式化的字符串。在字符串内可以嵌入表达式,用大括号 {} 括起来。
例如:
name = "John"
age = 30
f"Hello, my name is {name} and I'm {age} years old."
# 输出:'Hello, my name is John and I'm 30 years old.'