返回列表 發帖

基本輸入

本帖最後由 鄭繼威 於 2022-7-17 03:01 編輯

語法
變數= input([提示字串])
由input所接收的值型別是字串!


  1. score=int(input("請輸入你的成績: "))
  2. print(score)
複製代碼

  1. a=int(input("請輸入數字:"))
  2. print("你剛剛輸入的數字是",a,sep="")
複製代碼

TOP

  1. a=int(input("請輸入數字"))
  2. print("你剛剛輸入的數字是",a)
複製代碼

TOP

  1. a=int(input("請輸入數字"))
  2. print("你剛輸入的數字是",a,sep="")
複製代碼

TOP

  1. score=int(input("輸入成績"))
  2. print("你剛剛輸入的成績為"+str(score))
複製代碼

TOP

  1. # -*- coding: utf-8 -*-
  2. """
  3. Spyder Editor

  4. This is a temporary script file.
  5. """
  6. score=int(input("請輸入你的分數: "))
  7. print(score)
複製代碼

TOP

  1. a=int(input("請輸入數字:"))
  2. print("你剛輸入的數字是",a)
複製代碼

TOP

返回列表