To The Oak

To The Oak
 
Shu ting
 
If I love you
I won't wind upon you like a trumpet creeper
upvalue myself by your height
If I love you
I will never follow a spoony bird
repeating the monotone song for the green shade
not only like a springhead
brings you clean coolness whole year long
not only like a steep peak
enhances your height, sets off your straightness
even sunshine
and spring rain
No, all these are not enough!
I must be a ceiba by your side
as a tree standing together with you
our roots melt underneath
our leaves merge in clouds
when wind breezes
we greet each other
but no one
can understand our peculiar words
you have your strong stem and branches
like knives and swords
and like halberds
I have my red ample flowers
like heavy sighs
and heroic torches as well
we partake cold tide,thunder storm,firebolt
together we share brume,flowing mist,rainbow
as if we separate all the time
actually we forever rely on each other
this is great love
loyalty lives here
Love
not only your giant body
but also the position you stand,the earth under your feet

转载于:https://www.cnblogs.com/RoyCNNK/archive/2013/03/21/2974444.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
```python class PropertyManagementCompany: def __init__(self, name, liquidity, properties=None): self.checkName(name) self.name = name self.liquidity = liquidity if properties is None: self.portfolio = [] else: self.portfolio = properties def buyProperty(self, property, purchasePrice): if self.liquidity >= purchasePrice: self.portfolio.append(property) self.liquidity -= purchasePrice def sellProperty(self, property): if property in self.portfolio: self.portfolio.remove(property) self.liquidity += property.currentValuation def getName(self): return self.name def getLiquidity(self): return self.liquidity def getPortfolio(self): return self.portfolio def checkName(self, name): if name == '': raise ValueError('Company name cannot be empty.') ``` For example, we can create a new PropertyManagementCompany as follows: ```python properties = [Property('123 Main St.', 100000), Property('456 Oak Ave.', 200000)] company = PropertyManagementCompany('ABC Company', 500000, properties) ``` This creates a company named "ABC Company" with $500,000 liquidity and a portfolio containing two properties. We can then buy a new property and sell an existing property using the `buyProperty` and `sellProperty` methods: ```python newProperty = Property('789 Elm St.', 150000) company.buyProperty(newProperty, 150000) propertyToSell = properties[0] company.sellProperty(propertyToSell) ``` This would add the new property to the portfolio and remove the first property from the portfolio while adding its current valuation to the company's liquidity.

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值