Programming Exercise 3-1
Programming Exercise 8-1
def main():
# Receive user input
full_name = input (Enter your full name: )
# Split according to spaces
name = full_name.split()
# The first character of each name is an initial
for string in name:
print(string[0].upper(), sep=, end=)
print(., sep= , end=)
# Call the main function.
main()

![[SOLVED] Programming Exercise 3-1](https://assignmentchef.com/wp-content/uploads/2022/08/downloadzip.jpg)

![[Solved] Python program to manage information about baseball players](https://assignmentchef.com/wp-content/uploads/2022/08/downloadzip-1200x1200.jpg)
Reviews
There are no reviews yet.