Skip to content

Commit

Permalink
today
Browse files Browse the repository at this point in the history
  • Loading branch information
jackdoe committed Oct 21, 2023
1 parent 7ff849c commit 6946752
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions week-048.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,3 +70,18 @@ int main(void){
}
```


## [DAY-361] files


write multipe lines in a file using python

```
fout = open('output.txt', 'w')
line1 = "This here\'s the wattle,\n"
fout.write(line1)
line2 = "the emblem of our land.\n"
fout.write(line2)
fout.close()
```

0 comments on commit 6946752

Please sign in to comment.