Quiz Catalog

Catalog of quizzes

x = bool("")

print(x == True)
False
  • string/literal
  • boolean/operation/compare

txt = "The best things in life are free!"

print("free" in txt)
True
  • expression/operation/in
  • string/literal