摘要
第一部分输入输出非常简单,用到的知识点有
print()
:输出字符串
input()
:读取字符串
int()
:类型转换
f"{x:.2f}"
格式化字符串
虽然简单,但是也有一些需要注意的地方。
比如第4题:
input读入的是一个字符串,如果想用来计算,需要先用int()
转换成整数。
第6题,保留两位输出小数,如果不经常用格式化字符串的话,很容易写错。
1 Hello World!
str = "Hello World!"
print(str)
2 多行输出
import sys
str1 = 'Hello World!'
str2 = 'Hello Nowcoder!'
print(str1)
print(str2)
3 读入字符串
import sys
x = input()
print(x)
4 读入整数数字
import sys
x = int(input())
print(x)
print(type(x))
5 格式化输出(一)
import sys
name = input()
print(f"I am {name} and I am studying Python in Nowcoder!")
6 牛牛的小数输出
x =float(input())
print(f"{x:.2f}")