subject

Int = int(input()) float= float(input())
character = (input())
string = (input())

print('Enter integer (32 - 126):\n',int)
print('Enter float:\n',float)
print('Enter character:\n',character)
print('Enter string:\n',string)

print(int, float, character, string)
print(string, character, float, int)
print(int, 'converted to a character is c')

The output is this:

Enter integer (32 - 126):
99
Enter float:
3.77
Enter character:
z
Enter string:
Howdy
99 3.77 z Howdy
Howdy z 3.77 99
99 converted to a character is c

What am I doing wrong?

ansver
Answers: 2

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 11:00
When working with a team you should always do the following, except? question 3 options: be dependable and trustworthy be sensitive to others feelings do your fair share critique members of the group
Answers: 2
question
Computers and Technology, 24.06.2019 17:40
The value of sin(x) (in radians) can be approximated by the alternating infinite series create a function (prob3_2) that takes inputs of a scalar angle measure (in radians) and the number of approximation terms, n, and estimates sin(x). do not use the sin function in your solution. you may use the factorial function. though this can be done without a loop (more efficiently), your program must use (at least) one. you may find the mod() function useful in solving the problem.
Answers: 1
question
Computers and Technology, 25.06.2019 09:50
Part a: data processing given a data file, find the max, min, and average values of columns. also, create an addition column that is based on the other columns. there will be no error checking required for this lab. you are provided with a data file named (surprise! ) data.txt. data is arranged in columns where each item of data is twelve columns wide (so it is easy to extract data items using slicing): name height(m) weight(kg) joe 1.82 72.57 mary 1.60 63.50 dion 1.90 90.71 kayla 1.72 66.31 jose 1.78 70.23 sofia 1.63 65.12 erik 1.98 92.21 sara 1.57 65.77 your task is read the file data.txt and calculate the max, min, and average of the height and weight columns and to add an additional column that has the bmi calculated based on each height and weight. your output will look like this (and needs to be formatted like this). to match the testing on mimir here is the format string: "{: < 12s}{: < 12.2f}{: < 12.2f}{: < 12.2f}"
Answers: 3
question
Computers and Technology, 25.06.2019 16:30
The diagram gives descriptions of three jobs in the energy career cluster. the middle circle is a characteristic that is common to all three careers.
Answers: 1
You know the right answer?
Int = int(input()) float= float(input())
character = (input())
string = (input())
...
Questions
question
Mathematics, 10.09.2020 03:01
question
Mathematics, 10.09.2020 03:01
question
History, 10.09.2020 03:01
question
Mathematics, 10.09.2020 03:01
question
Mathematics, 10.09.2020 03:01
question
Biology, 10.09.2020 03:01
question
Mathematics, 10.09.2020 03:01
question
Physics, 10.09.2020 03:01
question
Mathematics, 10.09.2020 03:01
question
Mathematics, 10.09.2020 03:01
question
English, 10.09.2020 03:01
question
Mathematics, 10.09.2020 03:01
question
French, 10.09.2020 03:01
Questions on the website: 13722361