4. Python 기본 연산

1839 단어 python
Vamei 선배 님 의 블 로그 에 따라 Python 을 연습 하 는 Vamei 선배 님 의 블 로그 주소:
http://www.cnblogs.com/vamei/archive/2012/05/29/2524376.html
Python 도 다른 언어 와 더하기, 빼 기, 곱 하기, 나 누 기, 크기, 작 음, 같 음, 작 음, 같 지 않 음, 같 지 않 음, 또는 비 등 연산 자가 있 습 니 다. 아래 를 보십시오.
>>> print (2.3+2.1)    #  
4.4
>>> print (2.5+2.6)    #  
5.1
>>> print (1.9+2.3)    #  
4.199999999999999
>>> print (2.1-0.3)    #  
1.8
>>> print (2.3*3.1)    #  
7.13
>>> print (4.5/1.5)    #  
3.0
>>> print (3**2)    #  
9
>>> print (9%2)    #  
1
>>> print (9%3.3)    #  
2.4000000000000004
>>> 
>>> 
>>> print (5==6)    #  
False
>>> print (5==5)
True
>>> print (5!=6)    #   
True
>>> print (3<3, 3<=3)  #  ,    
False True
>>> print (4>5)    #  
False
>>> print (4>0)    #  
True
>>> print (5 in[1, 2, 5])    #5 list 
True
>>> print (3 is int)
False
>>> print (3 is 3)    #is
True
>>> print (3 is 2)
False
>>> print (3 is not 3)    #is not
False
>>> print (True and True, True and False)    # ,and
True False
>>> print (False or False, True or False)    # ,or
False True
>>> print (not True)    # ,not
False
>>> print ((5!=3) and (1==1))
True
>>> print (not -1)
False
>>> print (not False)
True
>>> print (not 0)
True
>>> print (not 1)
False
>>> print (-1==True)
False
>>> print (-1==False)
False
>>> not -1
False
>>> print ("hello" == 'hello')
True
>>> print ("hello" != "hello")
False
>>> print (not "dd")
False
>>> 

다음으로 전송:https://www.cnblogs.com/v-BigdoG-v/p/7398648.html

좋은 웹페이지 즐겨찾기