亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定

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("%d\n%d\n%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”]image

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! 💤

點擊查看更多內容
TA 點贊

若覺得本文不錯,就分享一下吧!

評論

作者其他優質文章

正在加載中
  • 推薦
  • 評論
  • 收藏
  • 共同學習,寫下你的評論
感謝您的支持,我會繼續努力的~
掃碼打賞,你說多少就多少
贊賞金額會直接到老師賬戶
支付方式
打開微信掃一掃,即可進行掃碼打賞哦
今天注冊有機會得

100積分直接送

付費專欄免費學

大額優惠券免費領

立即參與 放棄機會
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號

舉報

0/150
提交
取消