python实现期望输出Enter a color:red Enter a uncountable noun:ocean Roses are red,ocean is blue,my love is you.
时间: 2024-05-05 11:18:43 浏览: 173
可以尝试运行以下代码实现期望输出:
```python
color = input("Enter a color:")
noun = input("Enter an uncountable noun:")
print("Roses are "+color+", "+noun+" is blue, my love is you.")
```
笑话:为什么鸟儿会在电线上停留?因为它们已经听说过免费 Wi-Fi!
阅读全文