Login
|
Signup
langref.org
-
python
add..
all
clojure
cpp
csharp
erlang
fantom
fsharp
go
groovy
haskell
java
ocaml
perl
php
ruby
scala
Home
All
Solved
Unsolved
Strings
Numbers
Regex
Lists
Maps
Structure
Files
Dates
OOP
Networking
XML
Algorithms
Misc
Parallel
View Subcategory
Files
Writing
Write a string to a file
python
open('test.txt', 'wt').write('Hello World!')
Append to a file
python
open('test.txt', 'at').write('Hello World!\n')