## Day 1 Variables & Functions
- print() --to print out
- input()
print('Hello ' + input('what is your name? ') + '!') - len() --the length of the string
# 1.3 return the length of the input:name
print(len(input('Waht is your name?' ))) - \n --new line

exchange the value of two variables
Project: Band Name Generator
# day1 project 'band name generator'
print('Welcome to the band name generator.')
city = input('What is the city you grew up in?\n')
pet_name = input('What is the name of your pet?\n')
print(f'Your band name is: {city} {pet_name}')

Replit @Cici-Han
课程名字:100 Days of Code: The Complete Python Pro Bootcamp for 2023 | Udemy