Hello python world. I am new to python. I need some help in creating a table. It is an input file as
<name>,<age>,<gender>,<marks>. these items can be seperated using a ','. The test part would contain mixed spaces.. e.g Jhones can be written as JHoneS. but if has to return it as JHONES. Could anyone guide me ?

Recommended Answers

All 3 Replies

Paste your code by pushing Code from reply menu bar and explain your problem. We are not home work automate, but want to help people to learn.

it is very nice thing that learning.

A little help:

name = "JHoneS."
print(name.upper())  # JHONES.
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.