5 Working with text Flashcards
Julia as a Second Language
What function can you use to color your text in REPL?
Julia as a Second Language
What function can you use to format the spacing on the left and right of the text in REPL?
Julia as a Second Language
What three functions are good for writing text to files?
Julia as a Second Language
What are three functions good for inputting and processing text?
Julia as a Second Language
How are print() and println() related?
Julia as a Second Language
What are seven escape sequences to write common control characters used in Unix terminals?
Julia as a Second Language
How does printsyled() work?
Julia as a Second Language
What are symbols and how do you create and write one?
Julia as a Second Language
How is string() simular to print()?
Julia as a Second Language
What happens to a number or boolean when passed to print() as an argument?
Julia as a Second Language
How do you align text at the beginning and ending of a line?
Julia as a Second Language
How can you add a separator to a line of text?
Julia as a Second Language
What are the two way of creating a separator for text using its hexadecimal value?
Julia as a Second Language
How do you repeat a character of text?
Julia as a Second Language
How can you align decimal numbers when printing them as text?
Julia as a Second Language
When writing println(“hello”), what is the default argument coming before the “hello”?
Julia as a Second Language
Using println() how do you print to a file?
Julia as a Second Language
How can you open a file and read the data?
Julia as a Second Language
How can you read data typed into the terminal?