profile
My journey starts from Googling "What is a computer language?"

pipx install

How to pipx install.

2021년 4월 23일
·
0개의 댓글
·

If Statements

Just want to note an interesting syntax used for if statements:if condition_statement ? true_value : false_value;e.g. if i>20 ? "Greater" : "Smaller";

2021년 4월 15일
·
0개의 댓글
·

Loops

I can use a For loop to read all lines in a given file until EOF. How did the above work? According to this documentation on For loops, in a For loop

2021년 4월 14일
·
0개의 댓글
·