How to solve python 16.2 taking user input task | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How to solve python 16.2 taking user input task

8th Oct 2021, 4:35 PM
Sankalp Singh
5 Answers
0
Guys answer Asap
8th Oct 2021, 4:49 PM
Sankalp Singh
0
Hello! In python, when we want to prompt a user for input, we create a variable and set it equal to the input() function. Ex: x = input(“enter:”)
8th Oct 2021, 4:53 PM
Jibraeel Abdelwahhab
Jibraeel Abdelwahhab - avatar
0
Not sure what your qustion is i hope this helps Name = input() for string Name = int(input() for inteager
8th Oct 2021, 4:56 PM
Lz1234
- 2
This is question:- You’re working on a notification system and need to make the notification text eye-catching. Write a program that takes the text as input and outputs it by adding 3 stars at the beginning and the end. Sample Input this is awesome Sample Output *** this is awesome ***
8th Oct 2021, 4:57 PM
Sankalp Singh
- 2
Try doing it this way This is just an example so you get the idea so i used the example of name hope you can work with this if you still can do it show you work and we will try to help Name = input() Print (“*** + name + ***”) Remember to make each thing a saprete string
8th Oct 2021, 5:01 PM
Lz1234