1. 程式人生 > 其它 >python專題:python的基本輸入輸出。

python專題:python的基本輸入輸出。

技術標籤:Python

這裡以python3.9來講解

這裡寫目錄標題

python的基本輸入

輸入字串

a=input()

輸入數字

a=eval(input())

輸入多個數字,中間用(特殊符號)隔開。

a=map(int,input().split())

split後面的括號中什麼不填,預設為空格,split("")雙引號中間的內容為間隔的符號。

python的基本輸出

輸出字元

print("hello world")

輸出變數,預設間隔為空格

a,b,c=map(int,input().split())
print(a,b,c)

在這裡插入圖片描述

輸出變數,更改間隔符號

a,b,c=map(int,input().split())
print(a,b,c,sep="")

sep=“” 引號中間為空則輸出去掉空格,引號中間為(,)則間隔為逗號。
在這裡插入圖片描述在這裡插入圖片描述

多次輸出,末尾不換行,並確定間隔符

a,b,c=map(int,input().split())
print(a,end=",")
print(b,end=","
) print(c,end=",")

在這裡插入圖片描述