A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© wuqiong 金牌黑马   /  2018-7-17 10:00  /  1300 人查看  /  6 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

#函数input
message = input("Tell me something, and I will repeat it back to you: ")
print(message)
message1 = input()
print(message1)


#创建多行字符串的方式
prompt1="type someting"
prompt2=prompt1+": "+input()
print(prompt2)


prompt = "If you tell us who you are, we can personalize the messages you see."
prompt += "\nWhat is your first name? "
name = input(prompt)
print("\nHello, " + name + "!")


#input默认输入是字符,所以需要字符比较时应当进行类型转换
age=input("How old are you?")
age=int(age)
if(age>=18):
print("You have the right to vote!")
else:
print("Sorry,you have no right to vote!")


#求模运算符
c1=input("Please input a number,and i will do modulo operation for it.")
c1=int(c1)
c2=input("Please input another number,and i will do modulo operation for it.")
c2=int(c2)
c3=c1%c2
print(c3)




#汽车租赁 :编写一个程序,询问用户要租赁什么样的汽车,并打印一条消息,如“Let me see if I can find you a Subaru”。
input("What kind of car would you like to hire?")
print("Let me see if I can find you a Subaru")


#餐馆订位 :编写一个程序,询问用户有多少人用餐。如果超过8人,就打印一条消息,指出没有空桌;否则指出有空桌。
p1=input("How many people in the dinner?")
p1=int(p1)
if(p1>8):
print("Sorry,There is no empty table.")
else:
print("ok,There is an empty table")

#10的整数倍 :让用户输入一个数字,并指出这个数字是否是10的整数倍。
n1=input("Please input a number")
n1=int(n1)
if(n1%10==0):
print(n1+" is an integer multiple of 10.")
else:

print(n1+" is not an integer multiple of 10.")


6 个回复

正序浏览
回复 使用道具 举报

优秀
回复 使用道具 举报
回复 使用道具 举报
牛牛牛!
回复 使用道具 举报
回复 使用道具 举报
奈斯
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马