Board logo

標題: Python介紹 [打印本頁]

作者: ray    時間: 2020-5-3 16:02     標題: Python介紹

https://www.onlinegdb.com/online_python_compiler
作者: ray    時間: 2020-5-3 16:20

s =[int(x) > 0 for x in input().split(' ')]
e = 0
if s[0] & s[1] == s[2]:
    print('AND')
    e = e + 1
if s[0] | s[1] == s[2]:
    print('OR')
    e = e + 1
if s[0] ^ s[1] == s[2]:
    print('XOR')
    e = e + 1
if e == 0:
    print('IMPOSSIBLE')
作者: 陳泓瑜    時間: 2020-5-5 22:26

弄了一個會回傳陣列的東西
  1. try: #TRY CATCH的概念
  2.     while True:
  3.         score = [int(s) for s in input().split(" ")]
  4.         for i in range(0, len(score)): #len = 陣列長度
  5.             print(score[i], end=" ") #end = 結束後做的的內容

  6. except EOFError: #阿就是END OF FILES阿
  7.     pass
複製代碼
結果:
[attach]8758[/attach]
作者: 陳泓瑜    時間: 2020-5-7 22:20

https://www.facebook.com/photo.p ... ;type=3&theater




歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2