当前位置:   article > 正文

头歌educoder:Python入门之基础语法 第4关:输入输出_educoder答案python输入输出

educoder答案python输入输出

任务描述

本关任务:编写一个对用户输入,进行加减乘除四则运算的程序。

参考答案

  1. if __name__ == "__main__":
  2. a = int(input())
  3. b = int(input())
  4. # ********** Begin ********** #
  5. print(f"{a} + {b} = {a+b}")
  6. print(f"{a} - {b} = {a-b}")
  7. print(f"{a} * {b} = {a*b}")
  8. print(f"{a} / {b} = {format(a/b,'.6f')}")
  9. # ********** End ********** #

相关知识

输出

print的函数的基本使用,在之前的关卡中,已经出现过多次,将要输出的内容放在print()的括号内,就可以输出:

 
 
  1. print("hello world")

得到的结果是:hello world

print函数可以同时输出多个内容,只需要将它一起放在print的括号内,并用逗号隔开:

 
 
  1. print("hello","world")

得到的结果:hello world

值得注意的是,同时输出的多个内容之间,会有空格隔开。

类似于 C/C++ 的printf,Python 的print也能实现格式化输出,方法是使用%操作符,它会将左边的字符串当做格式字符串,将右边的参数代入格式字符串:

 
 
  1. print("100 + 200 = %d" % 300) #左边的%d被替换成右边的300
  2. print("A的小写是%s" % "a") #左边的%s被替换成右边的a

得到的结果是:

100 + 200 = 300 A的小写是a

如果要带入多个参数,则需要用()包裹代入的多个参数,参数与参数之间用逗号隔开,参数的顺序应该对应格式字符串中的顺序

 
 
  1. print("%d + %d = %d" % (100,200,300))
  2. print("%s %s" % ("world","hello"))

得到的结果是:

100 + 200 = 300 world hello

格式字符串中,不同占位符的含义:

%s: 作为字符串 %d: 作为有符号十进制整数 %u: 作为无符号十进制整数 %o: 作为无符号八进制整数 %x: 作为无符号十六进制整数,a~f采用小写形式 %X: 作为无符号十六进制整数,A~F采用大写形式 %f: 作为浮点数 %e,%E: 作为浮点数,使用科学计数法 %g,%G: 作为浮点数,使用最低有效数位

更多用法可以在网络上自行搜索。

注意: print函数输出数据后会换行,如果不想换行,需要指定end=""

 
 
  1. print("hello" , end="")
  2. print("world" , end="")

得到的结果:helloworld

输入

使用input函数可以获得用户输入,在控制台窗口上,输入的一行的字符串,使用变量 = input()的形式将其赋值给一个变量:

 
 
  1. str1 = input()
  2. print("输入的是%s" % str1)

如果输入hello然后回车,则输出:输入的是hello

还可以在input()的括号内,加入一些提示信息:

 
 
  1. str1=input("请输入:")
  2. print("输入的是%s" % str1)

运行之后,会先显示请输入:,输入数据hello之后回车,则会得到输出:输入的是hello,控制台上显示的全部内容为:

请输入:hello 输入的是hello

字符串转换

input函数接收的是用户输入的字符串,此时还不能作为整数或者小数进行数学运算,需要使用函数将字符串转换成想要的类型。

  • 转换成整数,使用int()函数:num1 = int(str)
  • 转换成小数,使用float()函数:f1 = float(str)
 
 
  1. str = input()
  2. num1 = int(str)
  3. f1 = float(str)
  4. print("整数%d,小数%f" % (num1,f1))

如果输入10,得到的输出是:整数10,小数10.000000

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/458920
推荐阅读
相关标签
  

闽ICP备14008679号