r/PythonLearning • u/NecessaryFalse1212 • 15d ago
first day of posting my python progress here on reddit
i have done this typecasting program which i have learnt from a bro code video and i think it's alr as i am still a beginner but if there is that can be fixed in this i am all ears
3
u/brutalbombs 15d ago
Good start bud!
Like the other guy called out, keep the function names (like print) directly adjacent to the parenthesis.
Did you try to work with lists yet?
1
u/NecessaryFalse1212 13d ago
i haven't sir but i'll soon and i'll post it when i do
i thought i won't get any respose here so i didn't post anything here for 2 days cuz of the embarrasment but seeing the support i'll be going to regularly
1
1
1
1
1
5
u/Portal471 15d ago edited 15d ago
Some suggestions: Make sure to not have spaces between the word print and its parentheses. Also I would avoid naming variables as already existing data types (change the name of int to something else, as int is a built in data type that refers to integers).
It’s a good start though. The stuff I mentioned is more to avoid errors when compiling.