黑馬程序員python教程,8天python從入門到精通,學(xué)python看這套就

P28
user_name = input("請輸入您的用戶名:")
user_type = input("請輸入您的用戶信息:")
print(f"您好:{user_name},您是尊貴的:{user_type}用戶,歡迎您的光臨!")
print("您好:%s,您是尊貴的:%s 用戶,歡迎您的光臨!"%(user_name,user_type))
標(biāo)簽:
P28
user_name = input("請輸入您的用戶名:")
user_type = input("請輸入您的用戶信息:")
print(f"您好:{user_name},您是尊貴的:{user_type}用戶,歡迎您的光臨!")
print("您好:%s,您是尊貴的:%s 用戶,歡迎您的光臨!"%(user_name,user_type))