Community Page
- www.techniqal.com/blog Jump to website »
-
Subscribe -
Community
-
Top Commenters
-
Popular Threads
-
Recent Comments
- Hi, like the concept, but no snow markers at all showing on IE. Is it a Firefox-only sort of thing?
- I actually saw this fine skiing flask on the mountain. I was going up the mountain in a lift and saw someone with one of these...a great idea for any one who likes their adult berverages
- Disqus is the best comment system now.
- Oh, I haven't heard about it.. Twitter? in snow report it's nice.. But why is it only in Colorado? I hope every ski resort have it.
- The site you put isn't working but I research for this one and it's really great. Animal lovers would be very cool about this. And another cool idea from Honda.
techniQal support
the Q stands for quality
Though there are a lot of resources out there for Python, rarely do you find a simple reference guide that helps you navigate the basics. I found that there was not a lot of reference material to help you do the simple things, if you didn’t know what to look for.
This little guide will focus [...] ... Continue reading »
This little guide will focus [...] ... Continue reading »
7 months ago
Best Regards
Reza _ Finland
7 months ago
So when opening the second file, specify the directory then.
Example on win32:
file = open("my_dir\\newfile.txt","w")
Example on *nix :
file = open("my_dir/newfile.txt","w")
This will create the new file in the directory "my_dir" assuming the directory exists in the same folder as your python script. You can also specify an absolute file path as well.
6 months ago
x = [0,1,2,3]
GeneCode = ['AAAA','AAAC','AAAG','AAAT']
def Li_to_GC(x):
for i in x:
print GeneCode[i],
Li_to_GC(x)
How can convert the result to the list or string?
6 months ago
I would argue that the input is a list already. If you are wanting to return a subset of the GeneCode list, I would do the following. There are more graceful ways to achieve this, but this method shows you the logic involved.
x = [0,1,2,3]
GeneCode = ['AAAA','AAAC','AAAG','AAAT']
def Li_to_GC(x):
newList = [GeneCode[i] for i in x]
return newList
print Li_to_GC(x)
In this case, you can then pass any numeric list to LI_to_GC and get the corresponding Genecodes list back.
I would check out this great List comprehension article here, and you can learn more. http://effbot.org/zone/python-list.htm
6 months ago
thanks
sean
4 months ago
I am opening a file in r+ mode. I have a problem in this. If I first write in a file and then read the same file it is working fine. But some junk characters are added to the end of the string.
Also one more problem if I read it first say using readline function and then write it, the write operation doesn't happen. Any idea what might be the problem?