代码搜索:using 有哪些应用?
找到约 10,000 项符合「using 有哪些应用?」的源代码
代码结果 10,000
www.eeworm.com/read/455419/7372447
chm using_installshield.chm
www.eeworm.com/read/442749/7645686
py using_tuple.py
#!/usr/bin/env python
# Filename: using_tuple.py
zoo=('wolf','elephant','penguin')
print 'Number of animals in the zoo is',len(zoo)
new_zoo=('monkey','dolphin',zoo)
print 'Number of animals i
www.eeworm.com/read/442749/7645688
py using_name.py
#!/usr/bin/env python
# Filename: using_name.py
if __name__=='__main__':
print 'This program is being run by itself'
else:
print 'I am being imported from another module'
www.eeworm.com/read/442749/7645710
py using_file.py
#!/usr/bin/env python
# Filename: using_file.py
poem='''\
Programming is fun
When the work is done
if you wanna make your work also fun:
use Python!
'''
f=file('poem.txt','w') # open for
www.eeworm.com/read/442749/7645718
py using_list.py
#!/usr/bin/env python
# Filename: using_list.py
# This is my shopping list
shoplist=['apple','mango','carrot','banana']
print 'I have',len(shoplist),'items to purchase.'
print 'These items
www.eeworm.com/read/442749/7645719
py using_dict.py
#!/usr/bin/env python
# Filename: using_dict.py
# 'ab' is short for 'a'ddress'b'ook
ab={ 'Swaroop' : 'swaroopch@byteofpython.info',
'Larry' : 'larry@wall.org',
'Matsumoto' : 'matz@ruby-lan
www.eeworm.com/read/442749/7645724
py using_sys.py
#!/usr/bin/env python
# Filename: using_sys.py
import sys
print 'The command line arguments are:'
for i in sys.argv:
print i
print '\n\nThe PYTHONPATH is',sys.path,'\n'
www.eeworm.com/read/436538/7768461
cpp add_using.cpp
/*
* This file contains code from "C++ Primer, Fourth Edition", by Stanley B.
* Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the
* copyright and warranty notices given in that
www.eeworm.com/read/436514/7769117
cpp add_using.cpp
/*
* This file contains code from "C++ Primer, Fourth Edition", by Stanley B.
* Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the
* copyright and warranty notices given in that