二手产品经理

二手产品经理

THIS IS RENO

字符串处理 - 38天 - 在线学python100天

记录#

  1. 继续学习对字符串的处理。
  2. 对字符串的处理等于对数组的处理,可以把字符串看作数组。
  3. 今天的练习是打印用户输入的字符串,用输入的字符串作为颜色代码,比如 r = red。
def color(t):
  if t == "b":
    print("\033[34m", end="")
  elif t == "g":
    print("\033[32m", end="")
  elif t == "r":
    print("\033[31m", end="")
  elif t == "y":
    print("\033[33m", end="")
  elif t == " ":
    print("\033[0m", end="")


mytxt = input("What sentence do you want rainbow-ising?\n")

for letter in mytxt:
  color(letter.lower())
  print(letter, end="")

加载中...
此文章数据所有权由区块链加密技术和智能合约保障仅归创作者所有。