Vincent歌詞中有Starry Starry Night。以下是Vincent的詞曲:
Starry starry night
Paint your palette the colors of the rainbow
And if your heart is in your dream
Follow your fate
And you'll live forever
As long as you dream
Starry starry night
The silver street
(the stars like your eyes)
Code now invites you
To come and play
Where fabulous dreams are made
Whereccupied and where youd be
In the land of make believe
As dreamers do
Starry starry night
So you see there's no need to cry
(painting all the dreams you ve had)
Just look up through the clouds
And follow them out into the blue
Starry starry night
Youre all i think about, you're the band of my life
Come on and find your starThis is a simple Python script that demonstrates how to create a dictionary and add some values to it. It also demonstrates how to iterate over the dictionary using a for loop.
Here's the script:
```python
# Create a dictionary called my_dict
my_dict = {}
# Add some values to the dictionary
my_dict['apple'] = 1
my_dict['banana'] = 2
my_dict['orange'] = 3
my_dict['grape'] = 4
# Print the dictionary to verify its contents
print("Dictionary contents:")
print(my_dict)
# Iterate over the dictionary using a for loop
for key, value in my_dict.items():
print(f"Key: {key}, Value: {value}")
```
Output:
```python
Dictionary contents:
{'apple': 1, 'banana': 2, 'orange': 3, 'grape': 4}
Key: apple, Value: 1
Key: banana, Value: 2
Key: orange, Value: 3
Key: grape, Value: 4
```
In this script, we create a dictionary called `my_dict` and add some values to it using the `my_dict['key'] = value` syntax. We then print the dictionary to verify its contents. Finally, we iterate over the dictionary using a for loop and print each key and value.