注册 登录
编程论坛 Python论坛

Python刚学题不会做求帮忙

Xovery 发布于 2022-11-24 09:27, 721 次点击
只有本站会员才能查看附件,请 登录
2 回复
#2
时光流逝2022-11-24 11:01
1.
(1)
name=input("请输入你的名字:")
print("Hello ",name,",would you like to learn some Python today?")


(2)
name=input("请输入你的名字:")
age=int(input("请输入你的年龄:"))
print("hi ",name,",you're ",age)





[此贴子已经被作者于2022-11-24 11:03编辑过]

#3
风卷浪起2022-12-30 17:20
3(1)n = int(input())
      print(f"其整数部分为:{n}")
3(3)name = input()
      age = int(input())
      print("Hi ,{name}, you're {age}!")
1