如何使我的变量成为 python 中的颜色?
How to do make my variable a color in python?
print("Question 1:") #Question 1
print("KPH \t MPH")
for KPH in range(60,131,10): #range km/h
print(KPH,format(KPH*0.6214,"10.1f"))
该程序采用 km/h (60-130) 范围内的速度并将它们转换为 mph。我无法弄清楚如何使 km/h 一种颜色和 miles/h 另一种颜色。有人可以帮忙吗?
您可以使用找到的颜色代码 here
例如:
print("Question 1:") # Question 1
RED = "\u001b[31m"
CYAN = "\u001b[36m"
print(f"{RED}KPH \t {CYAN}MPH")
for KPH in range(60, 131, 10): # range km/h
print(RED + str(KPH), CYAN + format(KPH * 0.6214, "10.1f"))
print("Question 1:") #Question 1
print("KPH \t MPH")
for KPH in range(60,131,10): #range km/h
print(KPH,format(KPH*0.6214,"10.1f"))
该程序采用 km/h (60-130) 范围内的速度并将它们转换为 mph。我无法弄清楚如何使 km/h 一种颜色和 miles/h 另一种颜色。有人可以帮忙吗?
您可以使用找到的颜色代码 here
例如:
print("Question 1:") # Question 1
RED = "\u001b[31m"
CYAN = "\u001b[36m"
print(f"{RED}KPH \t {CYAN}MPH")
for KPH in range(60, 131, 10): # range km/h
print(RED + str(KPH), CYAN + format(KPH * 0.6214, "10.1f"))