黑马程序员python教程,8天python从入门到精通,学python看这套就

P28
user_name = input("请输入您的用户名:")
user_type = input("请输入您的用户信息:")
print(f"您好:{user_name},您是尊贵的:{user_type}用户,欢迎您的光临!")
print("您好:%s,您是尊贵的:%s 用户,欢迎您的光临!"%(user_name,user_type))
P28
user_name = input("请输入您的用户名:")
user_type = input("请输入您的用户信息:")
print(f"您好:{user_name},您是尊贵的:{user_type}用户,欢迎您的光临!")
print("您好:%s,您是尊贵的:%s 用户,欢迎您的光临!"%(user_name,user_type))