Posts by Brenno Carvalho • 51 points
5 posts
-
-1
votes1
answer358
viewsQ: How to Manipulate Strings in Python
I was wondering how I can manipulate Python characters. In C, I can do this by adding 1 to a character, if I type "a" for example, it adds 1, and "a" will become "b". Example: char string[20];…
-
0
votes2
answers1550
viewsQ: Draw Inside a Python String
I am doing a program in Python, whose statement is as follows:: Create a function that takes a string and turns some of the characters into uppercase and others into lowercase. I need the user to…
-
1
votes1
answer2339
viewsQ: What is the Definition of NULL in C?
I was studying with my friend, and we are breaking our heads because we do not know what exactly the NULL function is! Because in every program that we see, NULL can serve in another way, I’m going…
-
0
votes1
answer349
viewsQ: What is & no printf in C for?
Oops, I wonder how the & (and commercial) works, in the case of the printf, in the scanf I know, that it takes the variable to a memory address, but in the case of the printf? I have this…
casked Brenno Carvalho 51 -
2
votes2
answers469
viewsQ: How do I make a comment in HTML?
I wanted to know how to make a comment in Pycharm with HTML. The comment in Python is #, in C is // or /* */, and in HTML?