file handling Flashcards

1
Q

open()

A

aprire un file con python

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

metodi di aprire un file

A
  • r
  • a
  • w
  • x
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

r

A

read

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

a

A

append

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

w

A

write

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

x

A

create

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

mode dei file

A
  • t

- b

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

t

A

file di testo

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

b

A

file binario (immagini)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

eliminare un file

A

import os

os.remove(‘nome del file.txt’)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly