栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Python

python 小目标3

Python 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

python 小目标3

Python Day 9

Today we will try the basic Arithmetic Operators including , + , - ,* ,/ and squares in Python.

Arithmetic Operators:
  1. The first line contains the sum of the two numbers.
  2. The second line contains the difference of the two numbers (first - second).
  3. The third line contains the product of the two numbers.
  4. The fourth line contains the division of the two numbers.

Solution:

def arith_op(a,b):
    n1=a+b
    n2=a-b
    n3=a*b
    n4=a/b
    print (n1,n2,n3,n4, sep="n")

arith_op(2,3)

#Alternative Solution
print("%dn%dn%d"%(a+b,a-b,a*b))

Output

arith_op(2,3)
5
-1
6
0.6666666666666666

[caption id=“attachment_1787” align=“alignnone” width=“600”]

BrooklynJohn / Pixabay[/caption]

Division:

Read two integers and print two lines. The first line should contain integer division,  a//b. The second line should contain float division, a /b.

a = int(input())
b = int(input())
print(a//b, a/b,  sep="n")

Output:

1
1.33333333333
Square List:

Read an integer N. For all non-negative integers i< N , print i^2.

Solution:

[print(i*i) for i in range(n)]

Output:

0
1
4
9
16
Happy Practicing! 

Reference:
https://www.hackerrank.com

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/221444.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号