교재 제10장 수업 후 연습문제(부분)
2127 단어 python 학습
#10.1
print(10.1)
filename = 'test.txt'
print(" ")
with open(filename) as file:
contents = file.read();
print(contents)
print(" ")
sentences = []
with open(filename) as file:
for line in file:
sentences.append(line.rstrip())
for each in sentences:
print(each)
print(" ")
lines = []
with open(filename) as file:
lines = file.readlines()
for line in lines:
print(line.rstrip())
#10.2
print(10.2)
lines2 = []
with open(filename) as file:
lines2 = file.readlines()
for line in lines2:
line = line.replace('Python','C++').rstrip()
print(line)
#10.3
print(10.3)
filename = 'guest.txt'
with open(filename,'w') as file:
str1 = input("Please input your name:")
file.write(str1)
with open(filename) as file:
print(file.read())
#10.4
print(10.4)
with open(filename,'w') as file:
str1 = input("Your name:")
while(str1 != 'quit'):
file.write(str1+'
')
str1 = input("Your name:")
with open(filename) as file:
print(file.read().rstrip())
#10.6
print(10.6)
try:
num1 = int(input("num1:"))
num2 = int(input("num2:"))
except ValueError:
print("ValueError")
else:
print(num1+num2)
print(10.7)
while True:
try:
num1 = input("num1:")
if(num1 == 'q'):
break
num1 = int(num1)
num2 = input("num2:")
if(num2 == 'q'):
break
num2 = int(num2)
except ValueError:
print("ValueError,try again.")
else:
print(num1+num2)
출력:
10.1
In Python you can play
In Python you can code
In Python you can debug
In Python you can play
In Python you can code
In Python you can debug
In Python you can play
In Python you can code
In Python you can debug
10.2
In C++ you can play
In C++ you can code
In C++ you can debug
10.3
Please input your name:jack
jack
10.4
Your name:pig
Your name:zet
Your name:quit
pig
zet
10.6
num1:1
num2:2
3
10.7
num1:3
num2:4
7
num1:5
num2:6
11
num1:k
ValueError,try again.
num1:5
num2:k
ValueError,try again.
num1:q
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
python 함수의 귀속함수는 코드의 봉인으로 다른 프로그램에 호출될 수도 있고 함수 내부에서 호출될 수도 있으며 함수 내부에서 자신을 호출하는 방식을 함수의 귀속이라고 부른다.마치 사람이 거울 앞에 서서 거울을 보는 것과 같다. 한 사람...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.