Skip to content

Instantly share code, notes, and snippets.

View zhongzhu's full-sized avatar

Zhu Zhong (钟柱) zhongzhu

  • Wind River
  • China
View GitHub Profile
>>> file = open('temp_file.txt')
>>> text = file.read()
>>> file.close()
>>> print(text)
This is a sample text.
@zhongzhu
zhongzhu / easytest_language_for
Created May 2, 2013 07:33
show how to use "for" in EasyTest
eval $i=0
eval $max=10
for $i=0; $i<$max; $i++
print $i