Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #24536
| From | wxjmfauth@gmail.com |
|---|---|
| Newsgroups | comp.lang.python |
| Subject | Py330b1, un café crème sucré |
| Date | 2012-06-27 12:49 -0700 |
| Organization | http://groups.google.com |
| Message-ID | <2ab28feb-71ed-44ec-a0e2-7258ef545e27@googlegroups.com> (permalink) |
# -*- coding: cp1252 -*-
# café.py
import sys
print(sys.version)
sys.path.append('d:\\crème')
import crème
import sucré
s = ' '.join(['un', 'café', crème.tag, sucré.tag])
print(s)
input(':')
#------
# .\sucré.py:
# -*- coding: cp1252 -*-
#tag = 'sucré'
#------
# d:\crème\crème.py
# -*- coding: cp1252 -*-
#tag = 'crème'
# output
# 3.3.0b1 (v3.3.0b1:e15c554cd43e+, Jun 26 2012, 20:30:00) [MSC v.1600 32 bit (Intel)]
# un café crème sucré
# :
# :-)
Back to comp.lang.python | Previous | Next — Next in thread | Find similar | Unroll thread
Py330b1, un café crème sucré wxjmfauth@gmail.com - 2012-06-27 12:49 -0700
Re: Py330b1, un café crème sucré Karim <kliateni@gmail.com> - 2012-06-27 22:48 +0200
Re: Py330b1, un café crème sucré gst <g.starck@gmail.com> - 2012-06-27 15:29 -0700
csiph-web