Basic Python - Tuples and Files

Descrição

none Python Basics (Object & Data Structure Basics) FlashCards sobre Basic Python - Tuples and Files, criado por Rebecca Noel em 13-12-2016.
Rebecca Noel
FlashCards por Rebecca Noel, atualizado more than 1 year ago
Rebecca Noel
Criado por Rebecca Noel aproximadamente 9 anos atrás
13
0

Resumo de Recurso

Questão Responda
How is a tuple constructed? Tuples use () with elements separated by commas. t = (1,2,3)
T/F?: Tuples can be created with mixed types of elements. True
T/F?: The len() check does NOT work with tuples. False
T/F?: Slicing works with tuples the same it does with lists. True
What two methods are available for tuples? .count and .index
What very important characteristic differentiates tuples from lists? IMMUTABLE
What function is used to open a file (.txt)? open() ex: f = open('test.txt')
Explain what these functions do with files: .read() .seek() .readlines() - reads the file - seek back to a different point in the file - reads lines of file without resetting
If you are trying to read a large file which function is preferred; .read() or .readlines()? .read()
What jupyter notebook exclusive way can we write a new file? %%writefile new.txt First line Second line

Semelhante

Python Quiz
karljmurphy
Think Python
tsilvo2001
Basic Python - Print Formatting
Rebecca Noel
What is Python?
Daniel Ingram
Python
54671
Know your Python!
educ8ict
Basic Python - Strings
Rebecca Noel
Study on IoT systems design
Tomasz Cieplak
OpenSource Programming
Faheem Ahmed
Basic Python - Lists
Rebecca Noel